diff --git a/.eslintrc.json b/.eslintrc.json index 3f52f0a2..6916e12c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,7 +9,7 @@ "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking" ], - "ignorePatterns": ["node_modules/", "dist/", "exporters/"], + "ignorePatterns": ["node_modules/", "dist/", "exporters/", "tools/", "svelte.config.ts"], "overrides": [ { "files": ["*.js", "*.d.ts"], @@ -37,6 +37,7 @@ "@typescript-eslint/ban-types": "warn", "@typescript-eslint/consistent-indexed-object-style": ["warn", "record"], "@typescript-eslint/consistent-generic-constructors": "warn", + "@typescript-eslint/no-namespace": "off", "@typescript-eslint/naming-convention": [ "warn", { @@ -106,7 +107,16 @@ }, { "selector": "typeLike", "format": ["PascalCase"] }, { "selector": "objectLiteralProperty", "format": null }, - { "selector": "default", "format": ["camelCase"] } + { "selector": "default", "format": ["camelCase"] }, + { + "selector": "parameter", + "modifiers": ["unused"], + "format": null + }, + { + "selector": "enumMember", + "format": ["UPPER_CASE"] + } ], "@typescript-eslint/no-unsafe-member-access": "off", "@typescript-eslint/no-unsafe-assignment": "off", diff --git a/.github/workflows/create-deployment.yml b/.github/workflows/create-deployment.yml index 2ba60bcb..91465309 100644 --- a/.github/workflows/create-deployment.yml +++ b/.github/workflows/create-deployment.yml @@ -3,37 +3,37 @@ name: Build and push to site on: - push: - branches: [main, experimental] + push: + branches: [main, experimental] - workflow_dispatch: + workflow_dispatch: jobs: - build: - runs-on: ubuntu-latest + build: + runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Setup Node.js environment - uses: actions/setup-node@v3 - with: - node-version: v18.x - - name: install yarn - run: npm i -g yarn - - name: run yarn - run: yarn - - name: build release - run: yarn build:prod - env: - FLAVOR: ${{ github.ref_name }} - - name: create distribution - run: node .github/workflows/distribute.cjs ${{ github.ref_name }} - env: - API_KEY: ${{ secrets.API_KEY }} - APP_ID: ${{ secrets.SECRET_KEY }} - AUTH_DOMAIN: ${{ secrets.AUTH_DOMAIN }} - MEASUREMENT_ID: ${{ secrets.MEASUREMENT_ID }} - MESSAGE_SENDER_ID: ${{ secrets.MESSAGE_SENDER_ID }} - PROJECT_ID: ${{ secrets.PROJECT_ID }} - STORAGE_BUCKET: ${{ secrets.STORAGE_BUCKET }} - GITHUB_REF: ${{ github.ref_name }} + steps: + - uses: actions/checkout@v1 + - name: Setup Node.js environment + uses: actions/setup-node@v3 + with: + node-version: v18.x + - name: install yarn + run: npm i -g yarn + - name: run yarn + run: yarn + - name: build release + run: yarn build:prod + env: + FLAVOR: ${{ github.ref_name }} + - name: create distribution + run: node .github/workflows/distribute.cjs ${{ github.ref_name }} + env: + API_KEY: ${{ secrets.API_KEY }} + APP_ID: ${{ secrets.SECRET_KEY }} + AUTH_DOMAIN: ${{ secrets.AUTH_DOMAIN }} + MEASUREMENT_ID: ${{ secrets.MEASUREMENT_ID }} + MESSAGE_SENDER_ID: ${{ secrets.MESSAGE_SENDER_ID }} + PROJECT_ID: ${{ secrets.PROJECT_ID }} + STORAGE_BUCKET: ${{ secrets.STORAGE_BUCKET }} + GITHUB_REF: ${{ github.ref_name }} diff --git a/.github/workflows/validate-pr.yaml b/.github/workflows/validate-pr.yaml index 23e99138..bf5c6b7f 100644 --- a/.github/workflows/validate-pr.yaml +++ b/.github/workflows/validate-pr.yaml @@ -3,25 +3,25 @@ name: Validate PR builds successfully. on: - pull_request: - branches: [main, experimental] - workflow_dispatch: + pull_request: + branches: [main, experimental] + workflow_dispatch: jobs: - build: - runs-on: ubuntu-latest + build: + runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Setup Node.js environment - uses: actions/setup-node@v2.5.1 - with: - node-version: 16.x - - name: install yarn - run: npm i -g yarn - - name: run yarn - run: yarn - - name: build release - run: yarn build:prod - env: - FLAVOR: pr-test + steps: + - uses: actions/checkout@v1 + - name: Setup Node.js environment + uses: actions/setup-node@v2.5.1 + with: + node-version: 16.x + - name: install yarn + run: npm i -g yarn + - name: run yarn + run: yarn + - name: build release + run: yarn build:prod + env: + FLAVOR: pr-test diff --git a/.gitignore b/.gitignore index 67045665..202ee54b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# Animated Java Specific +debug_packs/ + # Logs logs *.log @@ -102,3 +105,5 @@ dist # TernJS port file .tern-port +out/linecounter.txt +out/linecounter.json diff --git a/README.md b/README.md index b1c8c1d0..07026da7 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,20 @@
# How to Install + +There are two ways to install Animated Java: through the Official Plugin List, or through a direct link. +The Direct link is the recommended way to install Animated Java, as it will always be up to date with the latest version the moment it's released. While the Official Plugin List is also up to date, it may take a few days for the latest version to be available. + +## Through the Official Plugin List + +Open the Plugins menu in Blockbench (File > Plugins) +![Plugin Menu](https://raw.githubusercontent.com/Animated-Java/animated-java/experimental/src/assets/plugin_menu.png) + +Click on the `Available` tab, Then search for Animated Java in the search bar, and click Install. +![Search](https://raw.githubusercontent.com/Animated-Java/animated-java/experimental/src/assets/search.png) + +## Through the Direct Link + Open the Plugins menu in BlockBench (File > Plugins) ![Plugin Menu](https://raw.githubusercontent.com/Animated-Java/animated-java/main/src/assets/plugin_menu.png) @@ -32,25 +46,32 @@ Then, paste this URL into the box that appears: https://animated-java.dev/api/bu Click Confirm, and success! You've just installed Animated Java. # Getting Started + Check out the [Getting Started](https://animated-java.dev/docs/getting_started) page either online or in-app for detailed information on getting started with Animated Java. # Contributing to Animated Java + ## Prerequisites + Things you'll need installed before you can setup the development environment -- [Node.js](https://nodejs.org/en/) -- [Yarn](https://classic.yarnpkg.com/lang/en/docs/install/#windows-stable) + +- [Node.js](https://nodejs.org/en/) +- [Yarn](https://classic.yarnpkg.com/lang/en/docs/install/#windows-stable) ## Setting up the Development Environment 1. Clone the repository. 2. Run `yarn install` to install dependencies. -3. Run `yarn build:dev` to start the development environment. -4. Open Blockbench, then go to `File > Plugins > Load Plugin From File` and select the `animated_java.js` file from your local repo (`dist/animated-java.js`). +3. Open up `types/blockbench-types.d.ts` and uncomment the first line, then comment out the second line. +4. Run `yarn build:dev` to start the development environment. +5. Open Blockbench, then go to `File > Plugins > Load Plugin From File` and select the `animated_java.js` file from your local repo (`dist/animated-java.js`). ## Adding Localizations + 1. Copy the `en.yaml` file in `src/lang/` and rename it to match the language you're translating to. 2. Translate! Note that you should be testing your translations as you go in Blockbench. 3. Once you're done translating and testing, open a pull request with your changes. # Creating a Custom Exporter + We have a guide on how to create an external exporter for Animated Java [here](https://github.com/Animated-Java/animated-java-exporter-plugin-template). diff --git a/TODO.md b/TODO.md index fdbfd0c0..92e238ee 100644 --- a/TODO.md +++ b/TODO.md @@ -1,68 +1,135 @@ -# Important -- [x] Try decomposed transformation instead of matrix +# Blockbench -# UI -- [ ] Settings should debounce the onUpdate function instead of the infoPopup variable -- [x] Replace default animation creation and config screens -- [x] Variants panel - - [x] Component and mounting - - [x] Project based texture map - - [x] Button to add new Variant - - [x] ~~Double click variant~~ (or press the edit button) to open the Variants Dialog -- [x] Variants Dialog - - [x] Change the name of the variant - - [x] Configure texture map -- [x] Variants rendering - - [x] Need a function that sets the textures of a model based on a provided variant - - [x] Change textures based on which variant is selected - - [x] Change variant in animator based on keyframes -- [x] CodeboxSetting setting type -- [x] Add accessability options - - [x] Option to disable all UI animations -- [x] The setting description scales weirdly. Make it not do that -- [x] ~~Overwrite the rotation limits dialog~~ Create a new rotation limits dialog with a more accurate description for AJ's models. -- [x] Add a popup over the canvas that tells the user why their cubes are red -- [x] Settings UI needs to display the selected exporter's settings +- [x] ~~Add a root NBT blueprint setting~~ Add a custom summon commands setting. +- [x] Custom animation properties dialog +- [x] Prevent the user setting their export namespace to 'global' or 'minecraft' +- [x] Add affected bones list to variant, and animation properties. + - [x] Variant Properties + - [x] Animation Properties +- [x] Implement .ajmodel to blueprint conversion. +- [x] Change .ajmeta to use relative file paths. +- [x] Resolve env variables in blueprint settings. +- [x] Add renderbox options to the blueprint settings. +- [x] Render and handle invalid cubes with a red outline. +- [x] Force animations to be at least 1 tick long +- [x] Respect Variant inheritance when applying variants in the animation preview. +- [x] Add a transparency option to the variant texture map selection. (And don't export completely transparent bones) +- [x] Locators + - [x] Custom command keyframes. + - [x] Locator config. + - [x] Data Pack Compiler support. +- [x] Natively support step keyframes. +- [x] When upgrading old ajmodels, if they have command keyframes in the effect animator, create a locator at 0 0 0 with those keyframes. +- [x] Add support for Text Displays + - [x] Basic rendering + - [x] Word wrapping - Thanks Fetchbot! + - [x] Italic + - [x] Bold + - [x] Underline + - [x] Strikethrough + - [x] Array style inheritance + - [x] Support vanilla fonts + - [x] minecraft:default + - [x] minecraft:alt + - [x] minecraft:illageralt + - [x] User interface + - [x] Figure out a nice way to configure text displays... + - [x] Include an option to change the text. + - [x] Include an option to change the max line width. + - [x] Animation + - [x] Make sure the text display is animatable. + - [x] Add a TextDisplay config. + - [x] Add support for billboarding to TextDisplays. + - [ ] Add an option to change the alignment of the text. +- [x] Respect inheritance in the bone config. +- [x] Change font rendering to use a geometry for each character instead of a single plane for the entire text display. This will open the possibility of loading custom fonts and spacing. +- [x] Add vanilla block displays + - [x] Create a custom element type for block displays. + - [x] Add rendering for vanilla block models. + - [x] Use Blockstates to select models. + - [x] Parent model inheritance + - [x] block/block + - [x] Add overrides for entity-based block models. + - [x] chest + - [x] ender_chest + - [x] mob heads + - [x] shulker boxes + - [x] beds + - [x] multi-parts like walls throw an intneral error if they don't have any elements. +- [x] Add an option to Locators to use the old entity-based functionality. +- [x] Add an about page. +- [x] Camera Plugin Support + - [x] Data Pack Compiler support. +- [x] Add vanilla item displays + - [x] Create a custom element type for item displays. + - [x] Add rendering for vanilla item models. + - [x] Parent model inheritance + - [x] item/generated + - [x] item/handheld + - [x] item/handheld_rod + - [x] item/handheld_mace + - [ ] Add overrides for entity-based models. + - [x] conduit + - [x] decorated_pot + - [x] template_banner + - [x] template_shulker_box + - [x] template_skull + - [x] banners + - [ ] shield + - [ ] trident +- [ ] Change the Collection setting type to allow single-click swapping of items between lists. +- [ ] Look into adding a color picker for tintable vanilla items. +- [ ] Add Variants to the UndoSystem (Blocked by vanilla Blockbench not supporting custom undo actions) -# Settings -- [x] The animation exporter setting should not select based on exporter intex. It should be based on exporter ID - Fixed by adding a function to all settings that translates from a saved value to the run-time value. +# Data Pack Compiler -# Docs -- [x] The documentation needs to pull from the website when building for prod, and localhost when building for dev +- [x] Merge on_tick and on_load function tags +- [x] When merging the new minecraft:tick tag with old one, try and find any old style function references (AKA animated_java:my_project/zzzzzz/tick), and remove them. +- [x] Animation Tweening +- [x] Implement animation loop mode tech. +- [x] Write files after compilaion is done by using a queue system. +- [x] Make data pack compiler as async as possible. +- [x] Actually respect variant config options. +- [x] Warn the user when a previously summoned rig needs to be re-summoned due to changes in the blueprint. +- [x] Figure out how to add repeating functionality to command keyframes. +- [x] Add toggles to command keyframes to allow continuously running the commands in the keyframe instead of only once when the keyframe is reached. +- [x] Teleport the rig to the execution location of the summon command. +- [x] Rotate the bones with the root entity. +- [x] Add default saved Locator positions to the summoned rig. +- [x] Add support for text displays. +- [x] Add support for vanilla item displays. +- [x] Add support for vanilla block displays. +- [x] Locator rotation inheritance support - looks like they've supported it all this time... +- [x] Apply variant keyframes in animations. +- [x] Figure out how cameras will work. +- [ ] Check for references to non-existant functions in merged function tags, and remove them. +- [ ] When applying variants, remove any bones that have no elements with textured faces. -# About Page +# Resource Pack -# Animation Exporter -- [x] Add a way to summon a model with a specific variant -- [x] Make sure the animations take Affected Bones into account. +- [x] Warn the user when they have custom elements in their model, but have disabled the resource pack export. -# Model verification -- [x] On load make sure all bone names are valid -- [x] Enforce 20 fps animation snapping, and round all keyframes to their nearest valid value. -- [x] Update all instruction keyframes to commands keyframes -- [x] Update all old variants if possible +# List of numbers to track -# Main Animated Java Features -- [x] Textures should be allowed anywhere on the system. AJ should instead put them into the generated resource pack automatically when exporting. -- [x] Add a list of bones to the variant properties dialog. - - [x] Add a checkbox that when enabled turns the list into a whitelist. - - [x] The variant should only modify bones according to the list. For instance, If it's a whitelist the variant will only modify the bones in the list. Not touching the textures of other bones. -- [x] Bones should be forced to have safe function names instead of being changed on export. -- [x] We should check that all cubes are valid before exporting. -- [x] Show invalid element rotations with a red outline around the element. -- [x] Animations - - [x] Keyframes for swapping from one animation to another (Animation State Keyframes) - - [x] Keyframes for Variant swaps - - [x] Variant swap keyframe `execute if` condition. Only swap variants if a condition is met on the root entity. - - [x] Animation State keyframe `execute if` condition. Only swap states if a condition is met on the root entity. - - [x] Add a keyframe timeline to every bone for running commands at that bone -- [x] Things to convert when converting model formats into AJ's format - - [x] All animations need their snapping set to 20 - - [x] Animation Keyframes need to be rounded to the nearest 20th of a second -- [x] Add some way to have the rig follow the root even while it's not animating. - - ~~Possible solution~~ Solution: Make all display entities ride the root entity. -- [x] Make sure loop delay and start delay (in the animation properties menu) are taken into account by AJ when parsing animations. -- [x] Remove install and just update variables on reload/summon. -- [x] Add a way to adjust an animation's control over bones - - [x] Affected Bones - - [x] Affected Bones is a Whitelist +- [ ] Total exports + - Stored in amount per day +- [ ] Total functions created by the data pack compiler + - Stored in amount per day + +# Github + +- [ ] Reorganize the repo's branches. + - [ ] Create a `release` branch. + - [x] Create a `dev` branch. + - [x] Create a `legacy-beta` tag. + - [x] Create a `legacy-armorstands` tag. +- [ ] Reorganize the repo's tags. + - [ ] Create a `v1.0.0` tag. + - [x] Create a `legacy-beta` tag. + - [x] Create a `legacy-armorstands` tag. + +# Post 1.0.0 + +- [ ] Add support for [block-display.com's API](https://wiki.block-display.com/api/get-api) +- [ ] Add support for custom fonts in TextDisplays. +- [ ] Add support and previewing for interaction entities. diff --git a/exporters/datapackExporter/LICENSE b/exporters/datapackExporter/LICENSE deleted file mode 100644 index 1fabb612..00000000 --- a/exporters/datapackExporter/LICENSE +++ /dev/null @@ -1,677 +0,0 @@ -Animated Java Animation Exporter - An exporter plugin for the Animated Java Blockbench Plugin -Copyright (C) 2023 Titus Evans - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published -by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. - -You should have received a copy of the GNU Affero General Public License -along with this program. If not, see . - - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 1. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/exporters/datapackExporter/datapackExporter.ts b/exporters/datapackExporter/datapackExporter.ts deleted file mode 100644 index 6318671f..00000000 --- a/exporters/datapackExporter/datapackExporter.ts +++ /dev/null @@ -1,233 +0,0 @@ -import { generateDatapack } from './exporter/gen/datapack' -import { loadTranslations } from './exporter/translations' - -export function loadExporter() { - const { Settings, createInfo, Exporter, translate } = AnimatedJava.API - const { isValidDataPackMcMeta } = AnimatedJava.API.minecraft - const { NbtTag } = AnimatedJava.API.deepslate - - const TRANSLATIONS = loadTranslations() - - return new Exporter({ - id: 'animated_java:datapack_exporter', - name: translate('animated_java.datapack_exporter.name'), - description: translate('animated_java.datapack_exporter.description'), - getSettings() { - return { - datapack_mcmeta: new Settings.FileSetting( - { - id: 'animated_java:datapack_exporter/datapack_mcmeta', - displayName: TRANSLATIONS.datapack_mcmeta.name, - description: TRANSLATIONS.datapack_mcmeta.description, - defaultValue: '', - docsLink: '/docs/exporters/datapack_exporter/settings#datapack', - }, - function onUpdate(setting) { - if (!setting.value) { - setting.infoPopup = createInfo( - 'error', - TRANSLATIONS.datapack_mcmeta.error.unset - ) - } else if (!isValidDataPackMcMeta(setting.value)) { - setting.infoPopup = createInfo( - 'error', - TRANSLATIONS.datapack_mcmeta.error.invalid - ) - } - } - ), - outdated_rig_warning: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/outdated_rig_warning', - displayName: TRANSLATIONS.enable_outdated_rig_warning.name, - description: TRANSLATIONS.enable_outdated_rig_warning.description, - defaultValue: true, - docsLink: '/docs/exporters/datapack_exporter/settings#outdated_rig_warning', - }), - root_entity_nbt: new Settings.CodeboxSetting( - { - id: 'animated_java:datapack_exporter/root_entity_nbt', - displayName: TRANSLATIONS.root_entity_nbt.name, - description: TRANSLATIONS.root_entity_nbt.description, - language: 'nbt', - defaultValue: '{}', - docsLink: '/docs/exporters/datapack_exporter/settings#root_entity_nbt', - }, - function onUpdate(setting) { - try { - NbtTag.fromString(setting.value) - } catch (e: any) { - setting.infoPopup = createInfo('error', e.message) - } - } - ), - use_component_system: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/use_component_system', - displayName: TRANSLATIONS.use_component_system.name, - description: TRANSLATIONS.use_component_system.description, - defaultValue: false, - docsLink: '/docs/exporters/datapack_exporter/settings#use_component_system', - }), - // Function Toggles - include_variant_summon_functions: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_variant_summon_functions', - displayName: TRANSLATIONS.include_variant_summon_functions.name, - description: TRANSLATIONS.include_variant_summon_functions.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_variant_summon_functions', - }), - include_apply_variant_functions: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_apply_variant_functions', - displayName: TRANSLATIONS.include_apply_variant_functions.name, - description: TRANSLATIONS.include_apply_variant_functions.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_apply_variant_functions', - }), - include_uninstall_function: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_uninstall_function', - displayName: TRANSLATIONS.include_uninstall_function.name, - description: TRANSLATIONS.include_uninstall_function.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_uninstall_function', - }), - include_pause_all_animations_function: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_pause_all_animations_function', - displayName: TRANSLATIONS.include_pause_all_animations_function.name, - description: TRANSLATIONS.include_pause_all_animations_function.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_pause_all_animations_function', - }), - include_remove_rigs_function: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_remove_rigs_function', - displayName: TRANSLATIONS.include_remove_rigs_function.name, - description: TRANSLATIONS.include_remove_rigs_function.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_remove_rigs_function', - }), - include_remove_all_function: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_remove_all_function', - displayName: TRANSLATIONS.include_remove_all_function.name, - description: TRANSLATIONS.include_remove_all_function.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_remove_all_function', - }), - // Tag Toggles - include_on_load_function_tags: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_on_load_function_tags', - displayName: TRANSLATIONS.include_on_load_function_tags.name, - description: TRANSLATIONS.include_on_load_function_tags.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_on_load_function_tags', - }), - include_on_tick_function_tags: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_on_tick_function_tags', - displayName: TRANSLATIONS.include_on_tick_function_tags.name, - description: TRANSLATIONS.include_on_tick_function_tags.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_on_tick_function_tags', - }), - include_on_summon_function_tags: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_on_summon_function_tags', - displayName: TRANSLATIONS.include_on_summon_function_tags.name, - description: TRANSLATIONS.include_on_summon_function_tags.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_on_summon_function_tags', - }), - include_on_remove_function_tags: new Settings.CheckboxSetting({ - id: 'animated_java:datapack_exporter/include_on_remove_function_tags', - displayName: TRANSLATIONS.include_on_remove_function_tags.name, - description: TRANSLATIONS.include_on_remove_function_tags.description, - defaultValue: true, - docsLink: - '/docs/exporters/datapack_exporter/settings#include_on_remove_function_tags', - }), - } - }, - settingsStructure: [ - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/datapack_mcmeta', - }, - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/outdated_rig_warning', - }, - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/root_entity_nbt', - }, - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/use_component_system', - }, - { - type: 'group', - title: TRANSLATIONS.function_toggles_group.title, - openByDefault: false, - children: [ - { - type: 'setting', - settingId: - 'animated_java:datapack_exporter/include_variant_summon_functions', - }, - { - type: 'setting', - settingId: - 'animated_java:datapack_exporter/include_apply_variant_functions', - }, - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/include_uninstall_function', - }, - { - type: 'setting', - settingId: - 'animated_java:datapack_exporter/include_pause_all_animations_function', - }, - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/include_remove_rigs_function', - }, - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/include_remove_all_function', - }, - ], - }, - { - type: 'group', - title: TRANSLATIONS.function_tag_toggles_group.title, - openByDefault: false, - children: [ - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/include_on_load_function_tags', - }, - { - type: 'setting', - settingId: 'animated_java:datapack_exporter/include_on_tick_function_tags', - }, - { - type: 'setting', - settingId: - 'animated_java:datapack_exporter/include_on_summon_function_tags', - }, - { - type: 'setting', - settingId: - 'animated_java:datapack_exporter/include_on_remove_function_tags', - }, - ], - }, - ], - export: generateDatapack as any, - }) -} diff --git a/exporters/datapackExporter/datapack_structure.yml b/exporters/datapackExporter/datapack_structure.yml deleted file mode 100644 index 32c7a1e7..00000000 --- a/exporters/datapackExporter/datapack_structure.yml +++ /dev/null @@ -1,121 +0,0 @@ -datapack: - - data: - - animated_java: - - functions: - - project_name: - - animations: - - animation_name: - - apply_frame.mcfunction - - next_frame.mcfunction - - pause.mcfunction - - play.mcfunction - - resume.mcfunction - - stop.mcfunction - - tween: - - play.mcfunction - - resume.mcfunction - - pause_all_animations.mcfunction - - apply_variant: - - variant_a.mcfunction - - variant_b.mcfunction - - variant_c.mcfunction - - summon.mcfunction - - summon: - - variant_a.mcfunction - - variant_b.mcfunction - - variant_c.mcfunction - - remove: - - this.mcfunction - - rigs.mcfunction - - all.mcfunction - - reset_rig.mcfunction - - uninstall.mcfunction - - zzzzzzzz: - - animations: - - animation_name: - - apply_frame_as_root.mcfunction - - end_loop.mcfunction - - end.mcfunction - - next_frame_as_root.mcfunction - - pause_as_root.mcfunction - - play_as_root.mcfunction - - resume_as_root.mcfunction - - stop_as_root.mcfunction - - tick_animation.mcfunction - - tick_tween.mcfunction - - tick.mcfunction - - tween_as_root.mcfunction - - tween_play_as_root.mcfunction - - tween_resume_as_root.mcfunction - - pause_all_animations_as_root.mcfunction - - tick.mcfunction - - apply_variant: - - variant_a: - - as_root.mcfunction - - as_bones.mcfunction - - variant_b: - - as_root.mcfunction - - as_bones.mcfunction - - variant_c: - - as_root.mcfunction - - as_bones.mcfunction - - remove: - - as_root.mcfunction - - summon: - - as_root.mcfunction - - as_rig_entities.mcfunction - - as_bones.mcfunction - - as_locator_origins.mcfunction - - as_camera_origins.mcfunction - - camera_a: - - as_origin.mcfunction - - as_camera.mcfunction - - locator_a: - - as_origin.mcfunction - - as_locator.mcfunction - - load.mcfunction - - load_as_root.mcfunction - - tick.mcfunction - - tick_as_root.mcfunction - - tags: - - functions: - - project_name: - - on_load: - - as_root.json - - as_rig_entities.json - - as_bones.json - - as_locator_origins.json - - as_locators.json - - as_camera_origins.json - - as_cameras.json - - on_tick: - - as_root.json - - as_rig_entities.json - - as_bones.json - - as_locator_origins.json - - as_locators.json - - as_camera_origins.json - - as_cameras.json - - on_summon: - - as_root.json - - as_rig_entities.json - - as_bones.json - - as_locator_origins.json - - as_locators.json - - as_camera_origins.json - - as_cameras.json - - on_remove: - - as_root.json - - as_rig_entities.json - - as_bones.json - - as_locator_origins.json - - as_locators.json - - as_camera_origins.json - - as_cameras.json - - minecraft: - - tags: - - functions: - - tick.json - - load.json - - .ajmeta - - pack.mcmeta diff --git a/exporters/datapackExporter/exporter/gen/animationTree.ts b/exporters/datapackExporter/exporter/gen/animationTree.ts deleted file mode 100644 index 45b21b62..00000000 --- a/exporters/datapackExporter/exporter/gen/animationTree.ts +++ /dev/null @@ -1,199 +0,0 @@ -import { loadUtil, wrapNum } from '../util' -import { Globals as G } from './globals' - -export type IFrameLeaf = AnimatedJava.ITreeLeaf -export type IFrameBranch = AnimatedJava.ITreeBranch -export type IFrameTree = IFrameBranch | IFrameLeaf - -export function loadAnimationTreeGenerator() { - // const { rig } = G.exportData - const { formatStr, roundToN } = AnimatedJava.API - const { NbtCompound, NbtInt } = AnimatedJava.API.deepslate - const { matrixToNbtFloatArray } = loadUtil() - - function getBranchFileName(branch: IFrameBranch) { - return `branch_${branch.minScoreIndex}_${branch.maxScoreIndex}` - } - - function getRootLeafFileName(frame: IFrameLeaf) { - return `leaf_${frame.scoreIndex}` - } - - function getNodeLeafFileName(frame: IFrameLeaf) { - return `leaf_${frame.scoreIndex}_as_bone` - } - - function boneToString(node: AnimatedJava.IAnimationNode) { - const data = new NbtCompound() - .set('transformation', matrixToNbtFloatArray(node.matrix)) - .set('start_interpolation', new NbtInt(0)) - // console.log(node.interpolation) - if (node.interpolation === 'instant') { - // console.log('a') - data.set('interpolation_duration', new NbtInt(0)) - } else if (node.interpolation === 'default') { - // console.log('b') - data.set('interpolation_duration', new NbtInt(G.DEFAULT_INTERPOLATION_DURATION)) - } - return `execute if entity @s[tag=${formatStr(G.TAGS.namedBoneEntity, [ - node.name, - ])}] run data modify entity @s {} merge value ${data}` - } - - function locatorToString(node: AnimatedJava.IAnimationNode) { - const pos = node.pos - const euler = new THREE.Euler().setFromQuaternion(node.rot, 'YXZ') - const rot = new THREE.Vector3(euler.x, euler.y, euler.z).multiplyScalar(180 / Math.PI) - return `execute if entity @s[tag=${formatStr(G.TAGS.namedLocatorOrigin, [ - node.name, - ])}] at @s on origin run tp @s ^${roundToN(pos.x, 100000)} ^${roundToN( - pos.y, - 100000 - )} ^${roundToN(pos.z, 100000)} ~${roundToN( - wrapNum(-rot.y - 180, -180, 180), - 100000 - )} ~${roundToN(-rot.x, 100000)}` - } - - function cameraToString(node: AnimatedJava.IAnimationNode) { - const pos = node.pos - const euler = new THREE.Euler().setFromQuaternion(node.rot, 'YXZ') - const rot = new THREE.Vector3(euler.x, euler.y, euler.z).multiplyScalar(180 / Math.PI) - return `execute if entity @s[tag=${formatStr(G.TAGS.namedCameraOrigin, [ - node.name, - ])}] at @s on origin run tp @s ^${roundToN(pos.x, 100000)} ^${roundToN( - pos.y - 1.62, - 100000 - )} ^${roundToN(pos.z, 100000)} ~${roundToN( - wrapNum(-rot.y - 180, -180, 180), - 100000 - )} ~${roundToN(-rot.x, 100000)}` - } - - function generateNodeLeafFunction(leaf: IFrameLeaf) { - const commands: string[] = [] - for (const node of Object.values(leaf.item.nodes)) { - switch (node.type) { - case 'bone': { - commands.push(boneToString(node)) - break - } - case 'camera': { - commands.push(cameraToString(node)) - break - } - case 'locator': { - commands.push(locatorToString(node)) - break - } - default: { - throw new Error(`Unknown node type: ${node.type}`) - } - } - } - return commands - } - - function generateRootLeafFunction( - frameTreeFolder: AnimatedJava.VirtualFolder, - animName: string, - leaf: IFrameLeaf - ) { - const commands: string[] = [] - commands.push( - G.IS_SINGLE_ENTITY_RIG - ? // prettier-ignore - `function ${G.INTERNAL_PATH}/animations/${animName}/tree/${getNodeLeafFileName(leaf)}` - : // prettier-ignore - `execute on passengers run function ${G.INTERNAL_PATH}/animations/${animName}/tree/${getNodeLeafFileName(leaf)}` - ) - if (!(leaf.item.commands || leaf.item.variant)) return commands - - const functions: Record = {} - - if (leaf.item.commands) { - const condition = leaf.item.commands.executeCondition - const commands = leaf.item.commands.commands.split('\n') - if (!functions[condition]) functions[condition] = [] - functions[condition].push(...commands) - } - - if (leaf.item.variant) { - const variant = G.VARIANTS.find(v => v.uuid === leaf.item.variant.uuid) - let command = `function ${G.INTERNAL_PATH}/apply_variant/${variant.name}/as_root` - const condition = leaf.item.variant.executeCondition - if (condition) commands.push(`execute ${condition} run ${command}`) - else commands.push(command) - } - - for (const [condition, cmds] of Object.entries(functions)) { - if (cmds.length === 0) continue - if (cmds.length === 1) { - if (condition) - commands.push( - `execute unless entity @s[tag=${G.TAGS.disableCommandKeyframes}] at @s ${condition} run ${cmds[0]}` - ) - else - commands.push( - `execute unless entity @s[tag=${G.TAGS.disableCommandKeyframes}] at @s run ${cmds[0]}` - ) - continue - } - const index = Object.keys(functions).indexOf(condition) - frameTreeFolder.newFile( - `${getRootLeafFileName(leaf)}_effects_${index}.mcfunction`, - cmds - ) - let command = `function ${ - G.INTERNAL_PATH - }/animations/${animName}/tree/${getRootLeafFileName(leaf)}_effects_${index}` - commands.push( - condition - ? `execute unless entity @s[tag=${G.TAGS.disableCommandKeyframes}] at @s ${condition} run ${command}` - : `execute unless entity @s[tag=${G.TAGS.disableCommandKeyframes}] at @s run ${command}` - ) - } - return commands - } - - function buildFrameTree( - anim: AnimatedJava.IRenderedAnimation, - frameTree: IFrameTree, - frameTreeFolder: AnimatedJava.VirtualFolder - ) { - function recurse(tree: IFrameTree): string { - if (tree.type === 'branch') { - const content: string[] = [] - for (const item of tree.items) { - content.push(recurse(item)) - } - frameTreeFolder.newFile(getBranchFileName(tree) + '.mcfunction', content) - - return `execute if score @s ${G.SCOREBOARD.animTime} matches ${ - tree.minScoreIndex - }..${tree.maxScoreIndex} run function ${G.INTERNAL_PATH}/animations/${ - anim.name - }/tree/${getBranchFileName(tree)}` - } - - frameTreeFolder.newFile( - getRootLeafFileName(tree) + '.mcfunction', - generateRootLeafFunction(frameTreeFolder, anim.name, tree) - ) - - frameTreeFolder.newFile( - getNodeLeafFileName(tree) + '.mcfunction', - generateNodeLeafFunction(tree) - ) - - return `execute if score @s ${G.SCOREBOARD.animTime} matches ${ - tree.scoreIndex - } run function ${G.INTERNAL_PATH}/animations/${anim.name}/tree/${getRootLeafFileName( - tree - )}` - } - return recurse(frameTree) - } - - return { buildFrameTree } -} diff --git a/exporters/datapackExporter/exporter/gen/datapack.ts b/exporters/datapackExporter/exporter/gen/datapack.ts deleted file mode 100644 index 911c0405..00000000 --- a/exporters/datapackExporter/exporter/gen/datapack.ts +++ /dev/null @@ -1,109 +0,0 @@ -import { fileExists, loadJsonFile, recursivelyRemoveEmptyFolders } from '../util' -import { generateEntityTypes } from './entity_types' -import { generateTags } from './function_tags' -import { generateFunctions } from './functions' -import { Globals as G, util } from './globals' - -export interface IFolders { - datapack: AnimatedJava.VirtualFolder - data: AnimatedJava.VirtualFolder - minecraft: { - root: AnimatedJava.VirtualFolder - functions: AnimatedJava.VirtualFolder - tags: AnimatedJava.VirtualFolder - } - animatedJava: { - root: AnimatedJava.VirtualFolder - functions: AnimatedJava.VirtualFolder - tags: AnimatedJava.VirtualFolder - } - project: { - functions: AnimatedJava.VirtualFolder - internalFunctions: AnimatedJava.VirtualFolder - tags: AnimatedJava.VirtualFolder - } -} - -async function processAJMeta(folders: IFolders) { - const { LimitClock } = AnimatedJava.API - const ajmeta = new AnimatedJava.API.AJMetaFile() - - const oldPath = PathModule.join(G.DATAPACK_EXPORT_PATH, '.ajmeta') - const newPath = PathModule.join(G.DATAPACK_EXPORT_PATH, 'datapack.ajmeta') - - if (await fileExists(newPath)) await ajmeta.load(newPath) - else if (await fileExists(oldPath)) { - await ajmeta.load(oldPath) - await fs.promises.unlink(oldPath).catch(() => {}) - } - - let project = ajmeta.getProject(Project!.animated_java_uuid!) - if (!project) project = ajmeta.addProject(Project!.animated_java_uuid!, G.PROJECT_NAME, []) - - const oldFiles = project.file_list - const newFiles = folders.datapack.getAllFilePaths() - const filesToRemove = oldFiles.filter(f => !newFiles.includes(f)) - - const progress = new AnimatedJava.API.ProgressBarController( - 'Cleaning up datapack...', - filesToRemove.length - ) - const clock = new LimitClock(10) - for (const file of filesToRemove) { - await clock.sync().then(waiting => waiting && progress.update()) - const path = PathModule.join(G.DATAPACK_EXPORT_PATH, file) - console.log(`Removing ${path}`) - await fs.promises.rm(path).catch(() => {}) - if ((await fs.promises.readdir(PathModule.dirname(path)).catch(() => [])).length === 0) { - await recursivelyRemoveEmptyFolders(PathModule.dirname(path)) - } - progress.add(1) - } - progress.finish() - - project.file_list = newFiles - - folders.datapack.newFile('datapack.ajmeta', ajmeta.toJSON()) -} - -export async function generateDatapack(exportData: ExportData) { - const { VirtualFileSystem } = AnimatedJava.API - G.initializeExport(exportData) - - const folders = {} as IFolders - folders.datapack = new VirtualFileSystem.VirtualFolder('internal_datapack_folder') - folders.data = folders.datapack.newFolder('data') - - folders.minecraft = {} as IFolders['minecraft'] - folders.minecraft.root = folders.data.newFolder('minecraft') - folders.minecraft.functions = folders.minecraft.root.newFolder('functions') - folders.minecraft.tags = folders.minecraft.root.newFolder('tags') - - folders.animatedJava = {} as IFolders['animatedJava'] - folders.animatedJava.root = folders.data.newFolder('animated_java') - folders.animatedJava.functions = folders.animatedJava.root.newFolder('functions') - folders.animatedJava.tags = folders.animatedJava.root.newFolder('tags') - - folders.project = {} as IFolders['project'] - folders.project.functions = folders.animatedJava.functions.newFolder(G.PROJECT_NAME) - folders.project.tags = folders.animatedJava.tags.newFolder(G.PROJECT_NAME) - folders.project.internalFunctions = folders.project.functions.newFolder('zzzzzzzz') - - generateFunctions(folders) - generateTags(folders) - generateEntityTypes(folders) - - await processAJMeta(folders) - - console.log(folders.datapack) - - const writeProgress = new AnimatedJava.API.ProgressBarController( - 'Writing Data Pack to disk', - folders.datapack.childCount - ) - await folders.datapack.writeChildrenToDisk(G.DATAPACK_EXPORT_PATH, { - progress: writeProgress, - skipEmptyFolders: true, - }) - writeProgress.finish() -} diff --git a/exporters/datapackExporter/exporter/gen/entity_tags.ts b/exporters/datapackExporter/exporter/gen/entity_tags.ts deleted file mode 100644 index c5ff7752..00000000 --- a/exporters/datapackExporter/exporter/gen/entity_tags.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { Globals as G } from './globals' - -export function getTags() { - return { - new: 'aj.new', - globalRigRoot: `aj.rig_root`, - rigEntity: `aj.${G.PROJECT_NAME}.rig_entity`, - rootEntity: `aj.${G.PROJECT_NAME}.root`, - - boneEntity: `aj.${G.PROJECT_NAME}.bone`, - namedBoneEntity: `aj.${G.PROJECT_NAME}.bone.%s`, - - locatorOrigin: `aj.${G.PROJECT_NAME}.locator_origin`, - namedLocatorOrigin: `aj.${G.PROJECT_NAME}.locator_origin.%s`, - locatorEntity: `aj.${G.PROJECT_NAME}.locator`, - namedLocatorEntity: `aj.${G.PROJECT_NAME}.locator.%s`, - - cameraOrigin: `aj.${G.PROJECT_NAME}.camera_origin`, - namedCameraOrigin: `aj.${G.PROJECT_NAME}.camera_origin.%s`, - cameraEntity: `aj.${G.PROJECT_NAME}.camera`, - namedCameraEntity: `aj.${G.PROJECT_NAME}.camera.%s`, - - activeAnim: `aj.${G.PROJECT_NAME}.animation.%s`, - disableCommandKeyframes: `aj.${G.PROJECT_NAME}.disable_command_keyframes`, - } -} diff --git a/exporters/datapackExporter/exporter/gen/entity_types.ts b/exporters/datapackExporter/exporter/gen/entity_types.ts deleted file mode 100644 index 11432122..00000000 --- a/exporters/datapackExporter/exporter/gen/entity_types.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { type IFolders } from './datapack' -// import { Globals as G } from './globals' - -// function tagMerger(a: any, b: any) { -// a.values = a.values.filter(v => !b.values.includes(v)) -// a.values.push(...b.values) -// return a -// } - -export function generateEntityTypes(folders: IFolders) { - const animatedJavaEntityTypesFolder = folders.animatedJava.tags - .newFolder('entity_types') - .chainNewFile('root.json', { replace: false, values: ['minecraft:item_display'] }) - .chainNewFile('bone.json', { replace: false, values: ['minecraft:item_display'] }) - .chainNewFile('locator_origin.json', { replace: false, values: ['minecraft:snowball'] }) - .chainNewFile('camera_origin.json', { replace: false, values: ['minecraft:snowball'] }) -} diff --git a/exporters/datapackExporter/exporter/gen/function_tags.ts b/exporters/datapackExporter/exporter/gen/function_tags.ts deleted file mode 100644 index f1ba9d37..00000000 --- a/exporters/datapackExporter/exporter/gen/function_tags.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { type IFolders } from './datapack' -import { Globals as G } from './globals' - -function tagMerger(a: any, b: any) { - a.values = a.values.filter(v => !b.values.includes(v)) - a.values.push(...b.values) - return a -} - -export function generateTags(folders: IFolders) { - const minecraftFunctionTagFolder = folders.minecraft.tags.newFolder('functions') - minecraftFunctionTagFolder - .chainNewFile( - 'load.json', - { replace: false, values: [`${G.INTERNAL_PATH}/load`] }, - tagMerger - ) - .chainNewFile('tick.json', { replace: false, values: [`animated_java:tick`] }, tagMerger) - - const animatedJavaFunctionTagFolder = folders.animatedJava.tags.newFolder(`functions`) - animatedJavaFunctionTagFolder.newFile( - 'rig_tick.json', - { replace: false, values: [`${G.INTERNAL_PATH}/tick`] }, - tagMerger - ) - - const projectFunctionTagFolder = animatedJavaFunctionTagFolder.newFolder(`${G.PROJECT_NAME}`) - projectFunctionTagFolder - .newFolder('on_load') - .chainNewFile('as_root.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_rig_entities.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_bones.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_locator_origins.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_locator_entities.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_camera_origins.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_camera_entities.json', { replace: false, values: [] }, tagMerger) - projectFunctionTagFolder - .newFolder('on_tick') - .chainNewFile('as_root.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_rig_entities.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_bones.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_locator_origins.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_locator_entities.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_camera_origins.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_camera_entities.json', { replace: false, values: [] }, tagMerger) - projectFunctionTagFolder - .newFolder('on_summon') - .chainNewFile('as_root.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_rig_entities.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_bones.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_locator_origins.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_locator_entities.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_camera_origins.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_camera_entities.json', { replace: false, values: [] }, tagMerger) - projectFunctionTagFolder - .newFolder('on_remove') - .chainNewFile('as_root.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_rig_entities.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_bones.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_locator_origins.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_locator_entities.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_camera_origins.json', { replace: false, values: [] }, tagMerger) - .chainNewFile('as_camera_entities.json', { replace: false, values: [] }, tagMerger) -} diff --git a/exporters/datapackExporter/exporter/gen/functions.ts b/exporters/datapackExporter/exporter/gen/functions.ts deleted file mode 100644 index c23a5bc2..00000000 --- a/exporters/datapackExporter/exporter/gen/functions.ts +++ /dev/null @@ -1,905 +0,0 @@ -import { wrapNum } from '../util' -import { loadAnimationTreeGenerator } from './animationTree' -import { type IFolders } from './datapack' -import { Globals as G, JsonText, deepslate, formatStr, util } from './globals' - -type NbtCompound = InstanceType - -function getExportVersionId() { - return Math.round(Math.random() * 2 ** 31 - 1 - (Math.random() * 2 ** 31 - 1)) -} - -function generateBonePassenger(uuid: string, bone: AnimatedJava.IRenderedNodes['Bone']) { - const passenger = deepslate.NbtTag.fromString(bone.nbt) as NbtCompound - const default_pose = G.exportData.rig.defaultPose.find(pose => pose.uuid === uuid) - const useComponents = G.exportData.exporterSettings.use_component_system.value - - passenger.set('id', new deepslate.NbtString('minecraft:item_display')) - - if (!passenger.get('Tags')) passenger.set('Tags', new deepslate.NbtList()) - const tags = passenger.get('Tags') as InstanceType - tags.add(new deepslate.NbtString(G.TAGS.new)) - tags.add(new deepslate.NbtString(G.TAGS.rigEntity)) - tags.add(new deepslate.NbtString(G.TAGS.boneEntity)) - tags.add(new deepslate.NbtString(formatStr(G.TAGS.namedBoneEntity, [bone.name]))) - - passenger - .set('transformation', util.matrixToNbtFloatArray(default_pose.matrix)) - .set('interpolation_duration', new deepslate.NbtInt(G.DEFAULT_INTERPOLATION_DURATION)) - .set('item_display', new deepslate.NbtString('head')) - - if (!passenger.get('item')) passenger.set('item', new deepslate.NbtCompound()) - const item = passenger.get('item') as InstanceType - item.set('id', new deepslate.NbtString(G.RIG_ITEM)) - .set(useComponents ? 'count' : 'Count', new deepslate.NbtByte(1)) - .set( - useComponents ? 'components' : 'tag', - new deepslate.NbtCompound().set( - useComponents ? 'minecraft:custom_model_data' : 'CustomModelData', - new deepslate.NbtInt(bone.customModelData) - ) - ) - - if (!passenger.get('CustomName')) - passenger.set( - 'CustomName', - new deepslate.NbtString( - new JsonText([ - { text: '[', color: 'gray' }, - { text: 'AJ', color: 'aqua' }, - `] `, - [ - '', - { text: `${G.PROJECT_NAME}`, color: 'light_purple' }, - `.`, - { text: `bone`, color: 'white' }, - `[`, - { text: `${bone.name}`, color: 'yellow' }, - `]`, - ], - ]).toString() - ) - ) - - // FIXME - This doesn't account for animations, and it SHOULD - const maxHeight = Math.max(Math.abs(bone.boundingBox.min.y), Math.abs(bone.boundingBox.max.y)) - const maxWidth = Math.max( - Math.abs(bone.boundingBox.min.x), - Math.abs(bone.boundingBox.max.x), - Math.abs(bone.boundingBox.min.z), - Math.abs(bone.boundingBox.max.z) - ) - passenger - .set('height', new deepslate.NbtFloat(maxHeight)) - .set('width', new deepslate.NbtFloat(maxWidth)) - - return passenger -} - -function generateLocatorPassenger( - uuid: string, - locator: AnimatedJava.IRenderedNodes['Locator'], - internalSummonFolder: AnimatedJava.VirtualFolder -) { - const { roundToN } = AnimatedJava.API - const passenger = deepslate.NbtTag.fromString(locator.nbt) as NbtCompound - const useComponents = G.exportData.exporterSettings.use_component_system.value - // const default_pose = G.exportData.rig.defaultPose.find(pose => pose.uuid === uuid) - - passenger - .set('id', new deepslate.NbtString('minecraft:snowball')) - .set( - 'Tags', - new deepslate.NbtList([ - new deepslate.NbtString(G.TAGS.new), - new deepslate.NbtString(G.TAGS.rigEntity), - new deepslate.NbtString(G.TAGS.locatorOrigin), - new deepslate.NbtString(formatStr(G.TAGS.namedLocatorOrigin, [locator.name])), - ]) - ) - .set( - 'Item', - new deepslate.NbtCompound() - .set('id', new deepslate.NbtString(G.RIG_ITEM)) - .set(useComponents ? 'count' : 'Count', new deepslate.NbtByte(1)) - .set( - useComponents ? 'components' : 'tag', - new deepslate.NbtCompound().set(useComponents ? 'minecraft:custom_model_data' : 'CustomModelData', new deepslate.NbtInt(1)) - ) - ) - .set( - 'CustomName', - new deepslate.NbtString( - new JsonText([ - { text: '[', color: 'gray' }, - { text: 'AJ', color: 'aqua' }, - `] `, - [ - '', - { text: `${G.PROJECT_NAME}`, color: 'light_purple' }, - `.`, - { text: `locator`, color: 'white' }, - `[`, - { text: `${locator.name}`, color: 'yellow' }, - `]`, - ], - ]).toString() - ) - ) - - const locatorEntityNbt = deepslate.NbtTag.fromString(locator.nbt) as NbtCompound - if (!locatorEntityNbt.get('Tags')) locatorEntityNbt.set('Tags', new deepslate.NbtList()) - const tags = locatorEntityNbt.get('Tags') as InstanceType - - tags.add(new deepslate.NbtString(G.TAGS.locatorEntity)) - tags.add(new deepslate.NbtString(formatStr(G.TAGS.namedLocatorEntity, [locator.name]))) - tags.add(new deepslate.NbtString(G.TAGS.new)) - - if (!locatorEntityNbt.get('CustomName')) - locatorEntityNbt.set( - 'CustomName', - new deepslate.NbtString( - new JsonText([ - { text: '[', color: 'gray' }, - { text: 'AJ', color: 'aqua' }, - `] `, - [ - '', - { text: `${G.PROJECT_NAME}`, color: 'light_purple' }, - `.`, - { text: `locatorEntity`, color: 'white' }, - `[`, - { text: `${locator.name}`, color: 'yellow' }, - `]`, - ], - ]).toString() - ) - ) - - function locatorToString(node: AnimatedJava.IAnimationNode) { - const pos = node.pos - const euler = new THREE.Euler().setFromQuaternion(node.rot, 'YXZ') - const rot = new THREE.Vector3(euler.x, euler.y, euler.z).multiplyScalar(180 / Math.PI) - return `tp @s ^${roundToN(pos.x, 100000)} ^${roundToN(pos.y, 100000)} ^${roundToN( - pos.z, - 100000 - )} ~${roundToN(wrapNum(-rot.y - 180, -180, 180), 100000)} ~${roundToN(-rot.x, 100000)}` - } - internalSummonFolder - .newFolder('locator_' + locator.name) - // ANCHOR - function G.PROJECT_PATH/summon/locator_/as_origin - .chainNewFile('as_origin.mcfunction', [ - // `say Locator Origin`, - `summon ${locator.entity_type} ~ ~ ~ ${locatorEntityNbt.toString()}`, - `execute as @e[type=${locator.entity_type},tag=${formatStr(G.TAGS.namedLocatorEntity, [ - locator.name, - ])},tag=${G.TAGS.new},limit=1,distance=..1] run function ${ - G.INTERNAL_PATH - }/summon/locator_${locator.name}/as_entity`, - `data modify entity @s Owner set from storage animated_java Owner`, - `data remove storage animated_java Owner`, - ]) - // ANCHOR - function G.PROJECT_PATH/summon/locator_/as_entity - .chainNewFile('as_entity.mcfunction', [ - // `say Locator Entity`, - locatorToString(G.exportData.rig.defaultPose.find(v => v.uuid === uuid)), - `data modify storage animated_java Owner set from entity @s UUID`, - `tag @s remove ${G.TAGS.new}`, - `function #${G.PROJECT_PATH}/on_summon/as_locator_entities`, - ]) - - return passenger -} - -function generateCameraPassenger( - uuid: string, - camera: AnimatedJava.IRenderedNodes['Camera'], - internalSummonFolder: AnimatedJava.VirtualFolder -) { - const { roundToN } = AnimatedJava.API - const passenger = deepslate.NbtTag.fromString(camera.nbt) as NbtCompound - const useComponents = G.exportData.exporterSettings.use_component_system.value - // const default_pose = G.exportData.rig.defaultPose.find(pose => pose.uuid === uuid) - - passenger - .set('id', new deepslate.NbtString('minecraft:snowball')) - .set( - 'Tags', - new deepslate.NbtList([ - new deepslate.NbtString(G.TAGS.new), - new deepslate.NbtString(G.TAGS.rigEntity), - new deepslate.NbtString(G.TAGS.cameraOrigin), - new deepslate.NbtString(formatStr(G.TAGS.namedCameraOrigin, [camera.name])), - ]) - ) - .set( - 'Item', - new deepslate.NbtCompound() - .set('id', new deepslate.NbtString(G.RIG_ITEM)) - .set(useComponents ? 'count' : 'Count', new deepslate.NbtByte(1)) - .set( - useComponents ? 'components' : 'tag', - new deepslate.NbtCompound().set(useComponents ? 'minecraft:custom_model_data' : 'CustomModelData', new deepslate.NbtInt(1)) - ) - ) - .set( - 'CustomName', - new deepslate.NbtString( - new JsonText([ - { text: '[', color: 'gray' }, - { text: 'AJ', color: 'aqua' }, - `] `, - [ - '', - { text: `${G.PROJECT_NAME}`, color: 'light_purple' }, - `.`, - { text: `camera`, color: 'white' }, - `[`, - { text: `${camera.name}`, color: 'yellow' }, - `]`, - ], - ]).toString() - ) - ) - - const cameraEntityNbt = deepslate.NbtTag.fromString(camera.nbt) as NbtCompound - if (!cameraEntityNbt.get('Tags')) cameraEntityNbt.set('Tags', new deepslate.NbtList()) - const tags = cameraEntityNbt.get('Tags') as InstanceType - - tags.add(new deepslate.NbtString(G.TAGS.cameraEntity)) - tags.add(new deepslate.NbtString(formatStr(G.TAGS.namedCameraEntity, [camera.name]))) - tags.add(new deepslate.NbtString(G.TAGS.new)) - - if (!cameraEntityNbt.get('CustomName')) - cameraEntityNbt.set( - 'CustomName', - new deepslate.NbtString( - new JsonText([ - { text: '[', color: 'gray' }, - { text: 'AJ', color: 'aqua' }, - `] `, - [ - '', - { text: `${G.PROJECT_NAME}`, color: 'light_purple' }, - `.`, - { text: `cameraEntity`, color: 'white' }, - `[`, - { text: `${camera.name}`, color: 'yellow' }, - `]`, - ], - ]).toString() - ) - ) - - function cameraToString(node: AnimatedJava.IAnimationNode) { - const pos = node.pos - const euler = new THREE.Euler().setFromQuaternion(node.rot, 'YXZ') - const rot = new THREE.Vector3(euler.x, euler.y, euler.z).multiplyScalar(180 / Math.PI) - return `tp @s ^${roundToN(pos.x, 100000)} ^${roundToN(pos.y, 100000)} ^${roundToN( - pos.z, - 100000 - )} ~${roundToN(wrapNum(-rot.y - 180, -180, 180), 100000)} ~${roundToN(-rot.x, 100000)}` - } - internalSummonFolder - .newFolder('camera_' + camera.name) - // ANCHOR - function G.PROJECT_PATH/summon/camera_/as_origin - .chainNewFile('as_origin.mcfunction', [ - // `say Camera Origin`, - `summon ${camera.entity_type} ~ ~ ~ ${cameraEntityNbt.toString()}`, - `execute as @e[type=${camera.entity_type},tag=${formatStr(G.TAGS.namedCameraEntity, [ - camera.name, - ])},tag=${G.TAGS.new},limit=1,distance=..1] run function ${ - G.INTERNAL_PATH - }/summon/camera_${camera.name}/as_entity`, - `data modify entity @s Owner set from storage animated_java Owner`, - `data remove storage animated_java Owner`, - ]) - // ANCHOR - function G.PROJECT_PATH/summon/camera_/as_entity - .chainNewFile('as_entity.mcfunction', [ - // `say Camera Entity`, - cameraToString(G.exportData.rig.defaultPose.find(v => v.uuid === uuid)), - `data modify storage animated_java Owner set from entity @s UUID`, - `tag @s remove ${G.TAGS.new}`, - `function #${G.PROJECT_PATH}/on_summon/as_camera_entities`, - ]) - - return passenger -} - -function generateSummonFunction(internalSummonFolder: AnimatedJava.VirtualFolder) { - let rootNbt = deepslate.NbtTag.fromString( - G.exportData.exporterSettings.root_entity_nbt.value - ) as NbtCompound - const passengers = new deepslate.NbtList() - - for (const [uuid, bone] of Object.entries(G.exportData.rig.nodeMap)) { - switch (bone.type) { - case 'bone': - passengers.add(generateBonePassenger(uuid, bone)) - break - case 'locator': - passengers.add(generateLocatorPassenger(uuid, bone, internalSummonFolder)) - break - case 'camera': - passengers.add(generateCameraPassenger(uuid, bone, internalSummonFolder)) - break - default: - // @ts-ignore - throw new Error(`Unknown bone type: ${bone.type}`) - } - } - - if (passengers.length === 1 && G.exportData.renderedAnimations.length === 0) { - rootNbt = passengers.get(0) as NbtCompound - } else { - rootNbt.set('Passengers', passengers) - } - - if (!rootNbt.get('Tags')) rootNbt.set('Tags', new deepslate.NbtList()) - const tags = rootNbt.get('Tags') as InstanceType - tags.add(new deepslate.NbtString(G.TAGS.new)) - tags.add(new deepslate.NbtString(G.TAGS.rigEntity)) - tags.add(new deepslate.NbtString(G.TAGS.rootEntity)) - tags.add(new deepslate.NbtString(G.TAGS.globalRigRoot)) - - if (!rootNbt.get('CustomName')) - rootNbt.set( - 'CustomName', - new deepslate.NbtString( - new JsonText([ - { text: '[', color: 'gray' }, - { text: 'AJ', color: 'aqua' }, - `] `, - [ - '', - { text: `${G.PROJECT_NAME}`, color: 'light_purple' }, - `.`, - { text: `root`, color: 'white' }, - ], - ]).toString() - ) - ) - // ANCHOR - function G.PROJECT_PATH/summon - return [ - `summon minecraft:item_display ~ ~ ~ ${rootNbt.toString()}`, - `execute as @e[type=minecraft:item_display,tag=${G.TAGS.rootEntity},tag=${G.TAGS.new},limit=1,distance=..0.1] run function ${G.INTERNAL_PATH}/summon/as_root`, - ] -} - -export function generateFunctions(folders: IFolders) { - const { generateSearchTree } = AnimatedJava.API - const { buildFrameTree } = loadAnimationTreeGenerator() - const cameraCount = Object.values(G.exportData.rig.nodeMap).filter( - v => v.type === 'camera' - ).length - const locatorCount = Object.values(G.exportData.rig.nodeMap).filter( - v => v.type === 'locator' - ).length - - // ------------------------ - // SECTION - Load functions - // ------------------------ - - folders.project.internalFunctions - // ANCHOR - function G.PROJECT_PATH/load - .chainNewFile('load.mcfunction', [ - // Scoreboard objectives - ...Object.values(G.SCOREBOARD) - .filter(s => !s.includes('%s')) - .map(s => `scoreboard objectives add ${s} dummy`), - // prettier-ignore - ...G.exportData.renderedAnimations.map(a => `scoreboard objectives add ${formatStr(G.SCOREBOARD.localAnimTime, [a.name])} dummy`), - // prettier-ignore - ...G.exportData.renderedAnimations.map(a => `scoreboard objectives add ${formatStr(G.SCOREBOARD.loopMode, [a.name])} dummy`), - // prettier-ignore - ...G.exportData.renderedAnimations.map((a, i) => `scoreboard players set $aj.${G.PROJECT_NAME}.animation.${a.name} ${G.SCOREBOARD.id} ${i}`), - // prettier-ignore - ...G.VARIANTS.map((v, i) => `scoreboard players set $aj.${G.PROJECT_NAME}.variant.${v.name} ${G.SCOREBOARD.id} ${i}`), - // Variable initialization - `scoreboard players add .aj.last_id ${G.SCOREBOARD.id} 0`, - // prettier-ignore - ...G.LOOP_MODES.map((mode, i) => `scoreboard players set $aj.loop_mode.${mode} ${G.SCOREBOARD.i} ${i}`), - // version ID - `scoreboard players set ${G.SCOREBOARD.exportVersion} ${ - G.SCOREBOARD.i - } ${getExportVersionId()}`, - // load function tag - `scoreboard players reset * ${G.SCOREBOARD.rigLoaded}`, - `execute as @e[type=minecraft:item_display,tag=${G.TAGS.rootEntity}] run function ${G.INTERNAL_PATH}/on_load`, - ]) - // ANCHOR - func G.INTERNAL_PATH/on_load - .chainNewFile('on_load.mcfunction', [ - `scoreboard players set @s ${G.SCOREBOARD.rigLoaded} 1`, - G.OUTDATED_RIG_WARNING_ENABLED - ? `execute unless score @s ${G.SCOREBOARD.exportVersion} = ${G.SCOREBOARD.exportVersion} ${G.SCOREBOARD.i} at @s run function ${G.INTERNAL_PATH}/mark_outdated_rig` - : undefined, - ]) - - if (G.exportData.exporterSettings.include_uninstall_function.value === true) { - // ANCHOR - function NAMESPACE:uninstall - folders.project.functions.newFile('uninstall.mcfunction', [ - // Scoreboard objectives - ...Object.values(G.SCOREBOARD) - .filter(s => !s.includes('%s')) - .map(s => `scoreboard objectives remove ${s}`), - // prettier-ignore - ...G.exportData.renderedAnimations.map(a => `scoreboard objectives remove ${formatStr(G.SCOREBOARD.localAnimTime, [a.name])}`), - // prettier-ignore - ...G.exportData.renderedAnimations.map(a => `scoreboard objectives remove ${formatStr(G.SCOREBOARD.loopMode, [a.name])}`), - `tellraw @a ${G.TEXT.uninstallMessage.toString()}`, - ]) - } - - if (G.OUTDATED_RIG_WARNING_ENABLED) - folders.project.internalFunctions - // ANCHOR - func G.INTERNAL_PATH/mark_outdated_rig - .newFile('mark_outdated_rig.mcfunction', [ - `scoreboard players operation @s ${G.SCOREBOARD.exportVersion} = ${G.SCOREBOARD.exportVersion} ${G.SCOREBOARD.i}`, - `data modify entity @s Glowing set value 1`, - `data modify entity @s glow_color_override set value 16711680`, - ...(G.IS_SINGLE_ENTITY_RIG - ? [ - `data modify entity @s Glowing set value 1`, - `data modify entity @s glow_color_override set value 16711680`, - ] - : [ - `execute on passengers run data modify entity @s Glowing set value 1`, - `execute on passengers run data modify entity @s glow_color_override set value 16711680`, - ]), - `tellraw @a ${G.TEXT.errorOutOfDateRig}`, - ]) - - // !SECTION - - // ------------------------ - // SECTION - Tick functions - // ------------------------ - - folders.animatedJava.functions.newFile('tick.mcfunction', [ - `execute as @e[type=minecraft:item_display,tag=${G.TAGS.globalRigRoot}] run function #animated_java:rig_tick`, - ]) - - folders.project.internalFunctions - // ANCHOR - function G.INTERNAL_FUNCTIONS/tick - .chainNewFile('tick.mcfunction', [ - `execute if entity @s[tag=${G.TAGS.rootEntity}] run function ${G.INTERNAL_PATH}/tick_as_root`, - ]) - // ANCHOR - function G.INTERNAL_FUNCTIONS/tick_as_root - .chainNewFile('tick_as_root.mcfunction', [ - `execute unless score @s ${G.SCOREBOARD.rigLoaded} = @s ${G.SCOREBOARD.rigLoaded} run function ${G.INTERNAL_PATH}/on_load`, - `scoreboard players add @s ${G.SCOREBOARD.lifeTime} 1`, - `execute at @s on passengers run tp @s ~ ~ ~ ~ ~`, - `function ${G.INTERNAL_PATH}/animations/tick`, - `function #${G.PROJECT_PATH}/on_tick/as_root`, - ]) - - // !SECTION - - // -------------------------- - // SECTION - Summon Functions - // -------------------------- - - const internalSummonFolder = folders.project.internalFunctions.newFolder('summon') - folders.project.functions.newFile( - 'summon.mcfunction', - generateSummonFunction(internalSummonFolder) - ) - - internalSummonFolder - // ANCHOR - function G.INTERNAL_FUNCTIONS/summon/as_root - .chainNewFile('as_root.mcfunction', [ - // Default argument values - `execute unless score #frame ${G.SCOREBOARD.i} = #frame ${G.SCOREBOARD.i} run scoreboard players set #frame ${G.SCOREBOARD.i} 0`, - `execute unless score #variant ${G.SCOREBOARD.i} = #variant ${ - G.SCOREBOARD.i - } run scoreboard players set #variant ${G.SCOREBOARD.i} ${G.VARIANTS.findIndex( - v => v.default - )}`, - `execute unless score #animation ${G.SCOREBOARD.i} = #animation ${G.SCOREBOARD.i} run scoreboard players set #animation ${G.SCOREBOARD.i} -1`, - - `scoreboard players set @s ${G.SCOREBOARD.animTime} 0`, - `scoreboard players set @s ${G.SCOREBOARD.rigLoaded} 1`, - `scoreboard players operation @s ${G.SCOREBOARD.exportVersion} = ${G.SCOREBOARD.exportVersion} ${G.SCOREBOARD.i}`, - `execute store result score @s ${G.SCOREBOARD.id} run scoreboard players add .aj.last_id ${G.SCOREBOARD.id} 1`, - `tp @s ~ ~ ~ ~ ~`, - G.IS_SINGLE_ENTITY_RIG - ? `execute at @s run function ${G.INTERNAL_PATH}/summon/as_rig_entities` - : `execute at @s on passengers run function ${G.INTERNAL_PATH}/summon/as_rig_entities`, - ...G.VARIANTS.map( - v => - `execute if score #variant ${G.SCOREBOARD.i} = $aj.${G.PROJECT_NAME}.variant.${v.name} ${G.SCOREBOARD.id} run function ${G.INTERNAL_PATH}/apply_variant/${v.name}/as_root` - ), - `execute if score #animation ${G.SCOREBOARD.i} matches 0.. run scoreboard players operation @s ${G.SCOREBOARD.animTime} = #frame ${G.SCOREBOARD.i}`, - ...G.exportData.renderedAnimations - .map(a => [ - `execute if score #animation ${G.SCOREBOARD.i} = $aj.${G.PROJECT_NAME}.animation.${a.name} ${G.SCOREBOARD.id} run function ${G.INTERNAL_PATH}/animations/${a.name}/apply_frame_as_root`, - `execute if score #animation ${G.SCOREBOARD.i} = $aj.${ - G.PROJECT_NAME - }.animation.${a.name} ${ - G.SCOREBOARD.id - } run scoreboard players operation @s ${formatStr(G.SCOREBOARD.localAnimTime, [ - a.name, - ])} = #frame ${G.SCOREBOARD.i}`, - ]) - .reduce((a, b) => a.concat(b), []), - `execute at @s run function #${G.PROJECT_PATH}/on_summon/as_root`, - `tag @s remove ${G.TAGS.new}`, - // Reset scoreboard arguemnts - `scoreboard players reset #frame ${G.SCOREBOARD.i}`, - `scoreboard players reset #variant ${G.SCOREBOARD.i}`, - `scoreboard players reset #animation ${G.SCOREBOARD.i}`, - ]) - // ANCHOR - function G.INTERNAL_FUNCTIONS/summon/as_rig_entities - .chainNewFile('as_rig_entities.mcfunction', [ - `scoreboard players operation @s ${G.SCOREBOARD.id} = .aj.last_id ${G.SCOREBOARD.id}`, - `tag @s remove ${G.TAGS.new}`, - `function #${G.PROJECT_PATH}/on_summon/as_rig_entities`, - `execute if entity @s[tag=${G.TAGS.boneEntity}] run function #${G.INTERNAL_PATH}/on_summon/as_bones`, - locatorCount > 0 - ? `execute if entity @s[tag=${G.TAGS.locatorOrigin}] run function ${G.INTERNAL_PATH}/summon/as_locator_origins` - : undefined, - cameraCount > 0 - ? `execute if entity @s[tag=${G.TAGS.cameraOrigin}] run function ${G.INTERNAL_PATH}/summon/as_camera_origins` - : undefined, - ]) - - if (locatorCount > 0) - internalSummonFolder - // ANCHOR - function G.INTERNAL_FUNCTIONS/summon/as_locator_origins - .chainNewFile('as_locator_origins.mcfunction', [ - ...Object.values(G.exportData.rig.nodeMap) - .map(locator => - locator.type === 'locator' - ? `execute if entity @s[tag=${formatStr(G.TAGS.namedLocatorOrigin, [ - locator.name, - ])}] run function ${G.INTERNAL_PATH}/summon/locator_${ - locator.name - }/as_origin` - : '' - ) - .filter(v => v), - `function #${G.PROJECT_PATH}/on_summon/as_locator_origins`, - ]) - - if (cameraCount > 0) - internalSummonFolder - // ANCHOR - function G.INTERNAL_FUNCTIONS/summon/as_camera_origins - .chainNewFile('as_camera_origins.mcfunction', [ - ...Object.values(G.exportData.rig.nodeMap) - .map(camera => - camera.type === 'camera' - ? `execute if entity @s[tag=${formatStr(G.TAGS.namedCameraOrigin, [ - camera.name, - ])}] run function ${G.INTERNAL_PATH}/summon/camera_${ - camera.name - }/as_origin` - : '' - ) - .filter(v => v), - `function #${G.PROJECT_PATH}/on_summon/as_camera_origins`, - ]) - - // ANCHOR - function G.PROJECT_PATH/summon/ - if (G.exportData.exporterSettings.include_variant_summon_functions.value === true) { - const variantSummonFolder = folders.project.functions.newFolder('summon') - for (const variant of G.VARIANTS) { - if (variant.default) continue - variantSummonFolder.newFile(`${variant.name}.mcfunction`, [ - `scoreboard players set #variant ${G.SCOREBOARD.i} ${G.VARIANTS.indexOf(variant)}`, - `function ${G.PROJECT_PATH}/summon`, - ]) - } - } - - // !SECTION - - // --------------------------------- - // SECTION - Apply Variant Functions - // --------------------------------- - - if (G.exportData.exporterSettings.include_apply_variant_functions.value === true) { - const applyVariantsFolder = folders.project.functions.newFolder('apply_variant') - const internalApplyVariantsFolder = - folders.project.internalFunctions.newFolder('apply_variant') - const useComponents = G.exportData.exporterSettings.use_component_system.value - for (const variant of G.VARIANTS) { - // ANCHOR - function G.PROJECT_PATH/apply_variant/ - applyVariantsFolder.newFile(`${variant.name}.mcfunction`, [ - `execute if entity @s[tag=${G.TAGS.rootEntity}] run function ${G.INTERNAL_PATH}/apply_variant/${variant.name}/as_root`, - `execute if entity @s[tag=!${G.TAGS.rootEntity}] run tellraw @a ${formatStr( - G.TEXT.errorMustBeRunAsRoot.toString(), - [`${G.PROJECT_PATH}/apply_variant/${variant.name}`] - )}`, - ]) - internalApplyVariantsFolder - .newFolder(variant.name) - // ANCHOR - function G.INTERNAL_PATH/apply_variant//as_root - .chainNewFile(`as_root.mcfunction`, [ - G.IS_SINGLE_ENTITY_RIG - ? `function ${G.INTERNAL_PATH}/apply_variant/${variant.name}/as_bone` - : `execute on passengers run function ${G.INTERNAL_PATH}/apply_variant/${variant.name}/as_bone`, - ]) - // ANCHOR - function G.INTERNAL_PATH/apply_variant//as_bone - .chainNewFile(`as_bone.mcfunction`, [ - ...Object.entries(G.exportData.rig.nodeMap).map(([uuid, node]) => { - if (node.type !== 'bone') return - const included = variant.affectedBones.find(v => v.value === uuid) - if (!included && variant.affectedBonesIsAWhitelist) return - if (included && !variant.affectedBonesIsAWhitelist) return - - const variantBone = variant.default - ? node - : G.exportData.rig.variantModels[variant.name][uuid] - - const cmdPath = useComponents ? 'item.components.minecraft:custom_model_data' : 'item.tag.CustomModelData' - - return `execute if entity @s[tag=${formatStr(G.TAGS.namedBoneEntity, [ - node.name, - ])}] run data modify entity @s ${cmdPath} set value ${ - variantBone.customModelData - }` - }), - ]) - } - } - - // !SECTION - - // -------------------------- - // SECTION - Remove functions - // -------------------------- - - const removeFolder = folders.project.functions - .newFolder('remove') - // ANCHOR - function G.PROJECT_PATH/remove/this - .chainNewFile('this.mcfunction', [ - `execute if entity @s[tag=${G.TAGS.rootEntity}] run function ${G.INTERNAL_PATH}/remove/as_root`, - `execute if entity @s[tag=!${G.TAGS.rootEntity}] run tellraw @a ${formatStr( - G.TEXT.errorMustBeRunAsRoot.toString(), - [`${G.PROJECT_PATH}/remove/this`] - )}`, - ]) - if (G.exportData.exporterSettings.include_remove_rigs_function.value === true) { - // ANCHOR - function G.PROJECT_PATH/remove/rigs - removeFolder.newFile('rigs.mcfunction', [ - `execute as @e[type=minecraft:item_display,tag=${G.TAGS.rootEntity}] run function ${G.INTERNAL_PATH}/remove/as_root`, - ]) - } - if (G.exportData.exporterSettings.include_remove_all_function.value === true) { - // ANCHOR - function G.PROJECT_PATH/remove/all - removeFolder.newFile('all.mcfunction', [ - `execute as @e[type=minecraft:item_display,tag=${G.TAGS.rootEntity}] run function ${G.INTERNAL_PATH}/remove/as_root`, - `kill @e[tag=${G.TAGS.rigEntity}]`, - ]) - } - folders.project.internalFunctions - .newFolder('remove') - // ANCHOR - function G.INTERNAL_PATH/remove/as_root - .newFile('as_root.mcfunction', [ - `execute at @s run function #${G.PROJECT_PATH}/on_remove/as_root`, - G.IS_SINGLE_ENTITY_RIG ? undefined : `execute on passengers on origin run kill @s`, - G.IS_SINGLE_ENTITY_RIG ? undefined : `execute on passengers run kill @s`, - `kill @s`, - ]) - - // !SECTION - - // ----------------------------- - // SECTION - Animation functions - // ----------------------------- - - const animationsFolder = folders.project.functions.newFolder('animations') - const internalAnimationsFolder = folders.project.internalFunctions.newFolder('animations') - - for (const anim of G.exportData.renderedAnimations) { - const animFolder = animationsFolder.newFolder(anim.name) - for (const name of [ - 'play', - 'resume', - 'pause', - 'stop', - 'apply_frame', - 'next_frame', - 'tween_play', - 'tween_resume', - ]) { - // ANCHOR - G.PROJECT_PATH/animations//play - // ANCHOR - G.PROJECT_PATH/animations//resume - // ANCHOR - G.PROJECT_PATH/animations//pause - // ANCHOR - G.PROJECT_PATH/animations//stop - // ANCHOR - G.PROJECT_PATH/animations//apply_frame - // ANCHOR - G.PROJECT_PATH/animations//next_frame - // ANCHOR - G.PROJECT_PATH/animations//tween_play - // ANCHOR - G.PROJECT_PATH/animations//tween_resume - animFolder.newFile(`${name}.mcfunction`, [ - `execute if entity @s[tag=${G.TAGS.rootEntity}] run function ${G.INTERNAL_PATH}/animations/${anim.name}/${name}_as_root`, - `execute if entity @s[tag=!${G.TAGS.rootEntity}] run tellraw @a ${formatStr( - G.TEXT.errorMustBeRunAsRoot.toString(), - [`${G.PROJECT_PATH}/animations/${anim.name}/${name}`] - )}`, - ]) - } - } - - if ( - !G.IS_SINGLE_ENTITY_RIG && - G.exportData.exporterSettings.include_pause_all_animations_function.value === true - ) { - animationsFolder - // ANCHOR - function G.PROJECT_PATH:animations/pause_all - .chainNewFile('pause_all.mcfunction', [ - `execute if entity @s[tag=${G.TAGS.rootEntity}] run function ${G.INTERNAL_PATH}/animations/pause_all_as_root`, - `execute if entity @s[tag=!${G.TAGS.rootEntity}] run tellraw @a ${formatStr( - G.TEXT.errorMustBeRunAsRoot.toString(), - [`${G.PROJECT_PATH}/animations/pause_all`] - )}`, - ]) - internalAnimationsFolder - // ANCHOR - function G.INTERNAL_PATH:animations/pause_all_as_root - .chainNewFile('pause_all_as_root.mcfunction', [ - ...G.exportData.renderedAnimations.map( - a => `function ${G.INTERNAL_PATH}/animations/${a.name}/pause_as_root` - ), - ]) - } - - // ANCHOR - function G.INTERNAL_PATH/animations/tick - internalAnimationsFolder.newFile('tick.mcfunction', [ - ...G.exportData.renderedAnimations.map( - anim => - `execute if entity @s[tag=${formatStr(G.TAGS.activeAnim, [ - anim.name, - ])}] run function ${G.INTERNAL_PATH}/animations/${anim.name}/tick` - ), - ]) - - // ----------------------------------- - // SECTION - Animation Tree Generation - // ----------------------------------- - - for (const anim of G.exportData.renderedAnimations) { - const animFolder = internalAnimationsFolder - .newFolder(`${anim.name}`) - // ANCHOR - func G.INTERNAL_PATH:animations//play_as_root - .chainNewFile('play_as_root.mcfunction', [ - `scoreboard players set @s ${G.SCOREBOARD.animTime} 0`, - `scoreboard players set @s ${formatStr(G.SCOREBOARD.localAnimTime, [anim.name])} 0`, - `scoreboard players set @s ${formatStr(G.SCOREBOARD.loopMode, [ - anim.name, - ])} ${G.LOOP_MODES.indexOf(anim.loopMode)}`, - G.IS_SINGLE_ENTITY_RIG - ? `data modify entity @s interpolation_duration set value 0` - : `execute on passengers run data modify entity @s interpolation_duration set value 0`, - `function ${G.INTERNAL_PATH}/animations/${anim.name}/tree/leaf_0`, - G.IS_SINGLE_ENTITY_RIG - ? `data modify entity @s interpolation_duration set value 1` - : `execute on passengers run data modify entity @s interpolation_duration set value 1`, - `tag @s add ${formatStr(G.TAGS.activeAnim, [anim.name])}`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//resume_as_root - .chainNewFile('resume_as_root.mcfunction', [ - `scoreboard players set @s ${formatStr(G.SCOREBOARD.loopMode, [ - anim.name, - ])} ${G.LOOP_MODES.indexOf(anim.loopMode)}`, - G.IS_SINGLE_ENTITY_RIG - ? `data modify entity @s interpolation_duration set value 1` - : `execute on passengers run data modify entity @s interpolation_duration set value 1`, - `tag @s add ${formatStr(G.TAGS.activeAnim, [anim.name])}`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//pause_as_root - .chainNewFile('pause_as_root.mcfunction', [ - `tag @s remove ${formatStr(G.TAGS.activeAnim, [anim.name])}`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//stop_as_root - .chainNewFile('stop_as_root.mcfunction', [ - `scoreboard players set @s ${formatStr(G.SCOREBOARD.localAnimTime, [anim.name])} 0`, - `tag @s remove ${formatStr(G.TAGS.activeAnim, [anim.name])}`, - G.IS_SINGLE_ENTITY_RIG - ? `execute run data modify entity @s interpolation_duration set value 0` - : `execute on passengers run data modify entity @s interpolation_duration set value 0`, - `tag @s add ${G.TAGS.disableCommandKeyframes}`, - `function ${G.INTERNAL_PATH}/animations/${anim.name}/tree/leaf_0`, - `tag @s remove ${G.TAGS.disableCommandKeyframes}`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//twen_play_as_root - .chainNewFile('tween_play_as_root.mcfunction', [ - `function ${G.INTERNAL_PATH}/animations/${anim.name}/play_as_root`, - `function ${G.INTERNAL_PATH}/animations/${anim.name}/tween_as_root`, - G.IS_SINGLE_ENTITY_RIG - ? `execute if score #tween_duration ${G.SCOREBOARD.i} matches ..0 run data modify entity @s interpolation_duration set value 1` - : `execute if score #tween_duration ${G.SCOREBOARD.i} matches ..0 on passengers run data modify entity @s interpolation_duration set value 1`, - `scoreboard players reset #tween_duration ${G.SCOREBOARD.i}`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//tween_resume_as_root - .chainNewFile('tween_resume_as_root.mcfunction', [ - `function ${G.INTERNAL_PATH}/animations/${anim.name}/resume_as_root`, - `function ${G.INTERNAL_PATH}/animations/${anim.name}/tween_as_root`, - `function ${G.INTERNAL_PATH}/animations/${anim.name}/apply_frame_as_root`, - G.IS_SINGLE_ENTITY_RIG - ? `execute if score #tween_duration ${G.SCOREBOARD.i} matches ..0 run data modify entity @s interpolation_duration set value 1` - : `execute if score #tween_duration ${G.SCOREBOARD.i} matches ..0 on passengers run data modify entity @s interpolation_duration set value 1`, - `scoreboard players reset #tween_duration ${G.SCOREBOARD.i}`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//tween_as_root - .chainNewFile('tween_as_root.mcfunction', [ - `execute unless score #tween_duration ${G.SCOREBOARD.i} = #tween_duration ${G.SCOREBOARD.i} run scoreboard players set #tween_duration ${G.SCOREBOARD.i} 1`, - `scoreboard players operation @s ${G.SCOREBOARD.tweenTime} = #tween_duration ${G.SCOREBOARD.i}`, - G.IS_SINGLE_ENTITY_RIG - ? `execute store result entity @s interpolation_duration int 1 run scoreboard players get #tween_duration ${G.SCOREBOARD.i}` - : `execute on passengers store result entity @s interpolation_duration int 1 run scoreboard players get #tween_duration ${G.SCOREBOARD.i}`, - `scoreboard players remove @s ${G.SCOREBOARD.tweenTime} 1`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//tick - .chainNewFile('tick.mcfunction', [ - `execute if score @s ${G.SCOREBOARD.tweenTime} matches 1.. run function ${G.INTERNAL_PATH}/animations/${anim.name}/tick_tween`, - `execute unless score @s ${G.SCOREBOARD.tweenTime} matches 1.. run function ${G.INTERNAL_PATH}/animations/${anim.name}/tick_animation`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//tick_tween - .chainNewFile('tick_tween.mcfunction', [ - `scoreboard players remove @s ${G.SCOREBOARD.tweenTime} 1`, - G.IS_SINGLE_ENTITY_RIG - ? `execute if score @s ${G.SCOREBOARD.tweenTime} matches ..0 run data modify entity @s interpolation_duration set value 1` - : `execute if score @s ${G.SCOREBOARD.tweenTime} matches ..0 on passengers run data modify entity @s interpolation_duration set value 1`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//tick_animation - .chainNewFile('tick_animation.mcfunction', [ - `scoreboard players add @s ${formatStr(G.SCOREBOARD.localAnimTime, [anim.name])} 1`, - `scoreboard players operation @s ${G.SCOREBOARD.animTime} = @s ${formatStr( - G.SCOREBOARD.localAnimTime, - [anim.name] - )}`, - `function ${G.INTERNAL_PATH}/animations/${anim.name}/apply_frame_as_root`, - `execute if score @s ${formatStr(G.SCOREBOARD.localAnimTime, [ - anim.name, - ])} matches ${anim.duration - 1}.. run function ${G.INTERNAL_PATH}/animations/${ - anim.name - }/end`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//end - .chainNewFile('end.mcfunction', [ - `execute if score @s ${formatStr(G.SCOREBOARD.loopMode, [ - anim.name, - ])} = $aj.loop_mode.loop aj.i run function ${G.INTERNAL_PATH}/animations/${ - anim.name - }/end_loop`, - `execute if score @s ${formatStr(G.SCOREBOARD.loopMode, [ - anim.name, - ])} = $aj.loop_mode.once aj.i run function ${G.PROJECT_PATH}/animations/${ - anim.name - }/stop`, - `execute if score @s ${formatStr(G.SCOREBOARD.loopMode, [ - anim.name, - ])} = $aj.loop_mode.hold aj.i run function ${G.PROJECT_PATH}/animations/${ - anim.name - }/pause`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//end_loop - .chainNewFile('end_loop.mcfunction', [ - `scoreboard players set @s ${formatStr(G.SCOREBOARD.localAnimTime, [anim.name])} 0`, - `scoreboard players set @s ${G.SCOREBOARD.animTime} 0`, - `function ${G.INTERNAL_PATH}/animations/${anim.name}/tree/leaf_0`, - ]) - // ANCHOR - func G.INTERNAL_PATH:animations//next_frame_as_root - .chainNewFile('next_frame_as_root.mcfunction', [ - `function ${G.INTERNAL_PATH}/animations/${anim.name}/tick_animation`, - ]) - const tree = generateSearchTree(anim.frames, item => { - if (item.type === 'branch') return item.items.length > 0 - if (item.type === 'leaf') - return ( - item.item.nodes.length > 0 || - item.item.variant !== undefined || - item.item.commands !== undefined - ) - return false - }) - // ANCHOR - func AJ_NAMESPACE:animations/${anim.name}/tree - animFolder.newFile( - 'apply_frame_as_root.mcfunction', - buildFrameTree(anim, tree, animFolder.newFolder('tree')) - ) - } - // !SECTION - - // !SECTION -} diff --git a/exporters/datapackExporter/exporter/gen/globals.ts b/exporters/datapackExporter/exporter/gen/globals.ts deleted file mode 100644 index 42ba741d..00000000 --- a/exporters/datapackExporter/exporter/gen/globals.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { loadJSONText } from './text' -import { getScoreboards } from './scoreboards' -import { getTags } from './entity_tags' -import { loadUtil } from '../util' - -export let deepslate = AnimatedJava.API.deepslate -export let formatStr = AnimatedJava.API.formatStr -export let util: ReturnType -export let JsonText = AnimatedJava.API.JsonText - -export class Globals { - static exportData: ExportData - - static PROJECT_NAME: string - static VARIANTS: typeof Project.animated_java_variants.variants - static OUTDATED_RIG_WARNING_ENABLED: boolean - static IS_SINGLE_ENTITY_RIG: boolean - static DEFAULT_INTERPOLATION_DURATION: number - static RIG_ITEM: string - static DATAPACK_EXPORT_PATH: string - - static PROJECT_PATH: string - static INTERNAL_PATH: string - static SCOREBOARD: ReturnType - static TAGS: ReturnType - // static ENTITY_TYPES: ReturnType - static TEXT: ReturnType - - static readonly LOOP_MODES = ['loop', 'once', 'hold'] - - // static DATAPACK: AnimatedJava.VirtualFolder - // static DATA_FOLDER: AnimatedJava.VirtualFolder - // static MINECRAFT_FOLDER: AnimatedJava.VirtualFolder - - static initializeExport(exportData: ExportData) { - deepslate = AnimatedJava.API.deepslate - formatStr = AnimatedJava.API.formatStr - util = loadUtil() - JsonText = AnimatedJava.API.JsonText - - const { projectSettings, exporterSettings, renderedAnimations, rig } = exportData - - Globals.exportData = exportData - - Globals.PROJECT_NAME = projectSettings.project_namespace.value - Globals.PROJECT_PATH = `animated_java:${Globals.PROJECT_NAME}` - Globals.INTERNAL_PATH = `animated_java:${Globals.PROJECT_NAME}/zzzzzzzz` - Globals.RIG_ITEM = projectSettings.rig_item.value - Globals.DATAPACK_EXPORT_PATH = PathModule.parse(exporterSettings.datapack_mcmeta.value).dir - Globals.VARIANTS = Project.animated_java_variants.variants - Globals.OUTDATED_RIG_WARNING_ENABLED = exporterSettings.outdated_rig_warning.value - Globals.IS_SINGLE_ENTITY_RIG = - Object.keys(rig.nodeMap).length === 1 && renderedAnimations.length === 0 - Globals.DEFAULT_INTERPOLATION_DURATION = 1 - - Globals.SCOREBOARD = getScoreboards() - Globals.TAGS = getTags() - // Globals.ENTITY_TYPES = getEntityTypes() - Globals.TEXT = loadJSONText() - } -} diff --git a/exporters/datapackExporter/exporter/gen/scoreboards.ts b/exporters/datapackExporter/exporter/gen/scoreboards.ts deleted file mode 100644 index 680e4d63..00000000 --- a/exporters/datapackExporter/exporter/gen/scoreboards.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Globals as G } from './globals' - -export function getScoreboards() { - return { - i: 'aj.i', - id: 'aj.id', - tweenTime: 'aj.tween_time', - animTime: 'aj.anim_time', - lifeTime: 'aj.life_time', - exportVersion: `aj.${G.PROJECT_NAME}.export_version`, - rigLoaded: `aj.${G.PROJECT_NAME}.rig_loaded`, - loopMode: `aj.${G.PROJECT_NAME}.animation.%s.loop_mode`, - localAnimTime: `aj.${G.PROJECT_NAME}.animation.%s.local_anim_time`, - } -} diff --git a/exporters/datapackExporter/exporter/gen/text.ts b/exporters/datapackExporter/exporter/gen/text.ts deleted file mode 100644 index 5beabdf4..00000000 --- a/exporters/datapackExporter/exporter/gen/text.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { Globals as G } from './globals' - -export function loadJSONText() { - const { JsonText } = AnimatedJava.API - - const errorMustBeRunAsRoot = new JsonText([ - '', - { text: '[' }, - { text: 'Animated Java', color: 'aqua' }, - { text: '] ' }, - { text: 'ERROR ☠', color: 'red' }, - { text: ' > ', color: 'gray' }, - [ - { text: 'The function', color: 'yellow' }, - { text: ' %s ', color: 'blue' }, - { text: 'must be run' }, - { text: ' as ', color: 'red' }, - { text: 'the root entity!' }, - ], - ]) - - const errorOutOfDateRig = new JsonText([ - '', - { text: '[' }, - { text: 'Animated Java', color: 'aqua' }, - { text: '] ' }, - [ - { text: 'ERROR ☠', color: 'red' }, - { text: ' > ', color: 'gray' }, - { text: 'An existing rig is out-of-date!' }, - { - text: ' Please re-summon the highlighted rig to update it to the newly exported version.', - color: 'yellow', - }, - ], - ]) - - const uninstallMessage = new JsonText([ - '', - { text: '[' }, - { text: 'Animated Java', color: 'aqua' }, - { text: '] ' }, - [ - { text: 'INFO ℹ', color: 'green' }, - { text: ' > ', color: 'gray' }, - { text: `The ${G.PROJECT_NAME} Rig has been uninstalled successfully.\n` }, - { - text: `Please remove the Rig's functions from the datapack before reloading.`, - color: 'gray', - }, - ], - ]) - - return { errorMustBeRunAsRoot, errorOutOfDateRig, uninstallMessage } -} diff --git a/exporters/datapackExporter/exporter/translations.ts b/exporters/datapackExporter/exporter/translations.ts deleted file mode 100644 index be7fe895..00000000 --- a/exporters/datapackExporter/exporter/translations.ts +++ /dev/null @@ -1,145 +0,0 @@ -// @ts-ignore -import en from '../lang/en.yaml' -// @ts-ignore -import de from '../lang/de.yaml' -// @ts-ignore -import zh from '../lang/zh_cn.yaml' - -export function loadTranslations() { - const { addTranslations, translate } = AnimatedJava.API - - addTranslations('en', en as Record) - addTranslations('de', de as Record) - addTranslations('zh', zh as Record) - - return { - target_minecraft_version: { - displayName: translate( - 'animated_java.datapack_exporter.settings.target_minecraft_version' - ), - description: translate( - 'animated_java.datapack_exporter.settings.target_minecraft_version.description' - ).split('\n'), - }, - datapack_mcmeta: { - name: translate('animated_java.datapack_exporter.settings.datapack_mcmeta'), - description: translate( - 'animated_java.datapack_exporter.settings.datapack_mcmeta.description' - ).split('\n'), - error: { - unset: translate( - 'animated_java.datapack_exporter.settings.datapack_mcmeta.error.unset' - ), - invalid: translate( - 'animated_java.datapack_exporter.settings.datapack_mcmeta.error.invalid' - ), - }, - }, - interpolation_duration: { - name: translate('animated_java.datapack_exporter.settings.interpolation_duration'), - description: translate( - 'animated_java.datapack_exporter.settings.interpolation_duration.description' - ).split('\n'), - }, - enable_outdated_rig_warning: { - name: translate('animated_java.datapack_exporter.settings.enable_outdated_rig_warning'), - description: translate( - 'animated_java.datapack_exporter.settings.enable_outdated_rig_warning.description' - ).split('\n'), - }, - use_component_system: { - name: translate('animated_java.datapack_exporter.settings.use_component_system'), - description: translate( - 'animated_java.datapack_exporter.settings.use_component_system.description' - ).split('\n'), - }, - root_entity_nbt: { - name: translate('animated_java.datapack_exporter.settings.root_entity_nbt'), - description: translate( - 'animated_java.datapack_exporter.settings.root_entity_nbt.description' - ).split('\n'), - }, - include_variant_summon_functions: { - name: translate( - 'animated_java.datapack_exporter.settings.include_variant_summon_functions' - ), - description: translate( - 'animated_java.datapack_exporter.settings.include_variant_summon_functions.description' - ).split('\n'), - }, - include_apply_variant_functions: { - name: translate( - 'animated_java.datapack_exporter.settings.include_apply_variant_functions' - ), - description: translate( - 'animated_java.datapack_exporter.settings.include_apply_variant_functions.description' - ).split('\n'), - }, - include_uninstall_function: { - name: translate('animated_java.datapack_exporter.settings.include_uninstall_function'), - description: translate( - 'animated_java.datapack_exporter.settings.include_uninstall_function.description' - ).split('\n'), - }, - include_pause_all_animations_function: { - name: translate( - 'animated_java.datapack_exporter.settings.include_pause_all_animations_function' - ), - description: translate( - 'animated_java.datapack_exporter.settings.include_pause_all_animations_function.description' - ).split('\n'), - }, - include_remove_rigs_function: { - name: translate( - 'animated_java.datapack_exporter.settings.include_remove_rigs_function' - ), - description: translate( - 'animated_java.datapack_exporter.settings.include_remove_rigs_function.description' - ).split('\n'), - }, - include_remove_all_function: { - name: translate('animated_java.datapack_exporter.settings.include_remove_all_function'), - description: translate( - 'animated_java.datapack_exporter.settings.include_remove_all_function.description' - ).split('\n'), - }, - function_toggles_group: { - title: translate('animated_java.datapack_exporter.settings.function_toggles_group'), - }, - include_on_load_function_tags: { - name: translate( - 'animated_java.datapack_exporter.settings.include_on_load_function_tags' - ), - description: translate( - 'animated_java.datapack_exporter.settings.include_on_load_function_tags.description' - ).split('\n'), - }, - include_on_tick_function_tags: { - name: translate( - 'animated_java.datapack_exporter.settings.include_on_tick_function_tags' - ), - description: translate( - 'animated_java.datapack_exporter.settings.include_on_tick_function_tags.description' - ).split('\n'), - }, - include_on_summon_function_tags: { - name: translate( - 'animated_java.datapack_exporter.settings.include_on_summon_function_tags' - ), - description: translate( - 'animated_java.datapack_exporter.settings.include_on_summon_function_tags.description' - ).split('\n'), - }, - include_on_remove_function_tags: { - name: translate( - 'animated_java.datapack_exporter.settings.include_on_remove_function_tags' - ), - description: translate( - 'animated_java.datapack_exporter.settings.include_on_remove_function_tags.description' - ).split('\n'), - }, - function_tag_toggles_group: { - title: translate('animated_java.datapack_exporter.settings.function_tag_toggles_group'), - }, - } -} diff --git a/exporters/datapackExporter/exporter/util.ts b/exporters/datapackExporter/exporter/util.ts deleted file mode 100644 index 8f5f6c24..00000000 --- a/exporters/datapackExporter/exporter/util.ts +++ /dev/null @@ -1,43 +0,0 @@ -export function loadUtil() { - const { NbtCompound, NbtList, NbtFloat } = AnimatedJava.API.deepslate - - function arrayToNbtFloatArray(array: number[]) { - return new NbtList(array.map(v => new NbtFloat(v))) - } - - function matrixToNbtFloatArray(matrix: THREE.Matrix4) { - const matrixArray = new THREE.Matrix4().copy(matrix).transpose().toArray() - return arrayToNbtFloatArray(matrixArray) - } - - function transformationToNbt(pos: THREE.Vector3, rot: THREE.Quaternion, scale: THREE.Vector3) { - return new NbtCompound( - new Map() - .set('translation', arrayToNbtFloatArray(pos.toArray())) - .set('right_rotation', arrayToNbtFloatArray([0, 0, 0, 1])) - .set('left_rotation', arrayToNbtFloatArray(rot.toArray())) - .set('scale', arrayToNbtFloatArray(scale.toArray())) - ) - } - - return { arrayToNbtFloatArray, matrixToNbtFloatArray, transformationToNbt } -} - -export function wrapNum(num: number, min: number, max: number) { - return ((((num - min) % (max - min)) + (max - min)) % (max - min)) + min -} - -export async function fileExists(path: string) { - return !!(await fs.promises.stat(path).catch(() => false)) -} - -export async function loadJsonFile(path: string) { - return JSON.parse(await fs.promises.readFile(path, 'utf-8')) -} - -export async function recursivelyRemoveEmptyFolders(path: string) { - console.log(`Removing empty folder ${path}`) - await fs.promises.rmdir(path).catch(() => {}) - if ((await fs.promises.readdir(PathModule.dirname(path)).catch(() => [])).length === 0) - await recursivelyRemoveEmptyFolders(PathModule.dirname(path)) -} diff --git a/exporters/datapackExporter/globals.d.ts b/exporters/datapackExporter/globals.d.ts deleted file mode 100644 index 295c9a8a..00000000 --- a/exporters/datapackExporter/globals.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { loadExporter } from './datapackExporter' - -declare global { - // I am not sure if this is the best way to do this, but it works 🤓👍 - type ExporterSettings = ReturnType['getSettings']> - type ExportData = AnimatedJava.IAnimatedJavaExportData -} diff --git a/exporters/datapackExporter/index.ts b/exporters/datapackExporter/index.ts deleted file mode 100644 index 4939bbca..00000000 --- a/exporters/datapackExporter/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { loadExporter } from './datapackExporter' - -requestAnimationFrame(function repeat() { - if (AnimatedJava?.loaded) loadExporter() - else requestAnimationFrame(repeat) -}) diff --git a/exporters/datapackExporter/lang/en.yaml b/exporters/datapackExporter/lang/en.yaml deleted file mode 100644 index cc17e724..00000000 --- a/exporters/datapackExporter/lang/en.yaml +++ /dev/null @@ -1,82 +0,0 @@ -# Animation Exporter -animated_java.datapack_exporter.name: Data Pack Exporter - -animated_java.datapack_exporter.settings.target_minecraft_version: Target Minecraft Version -animated_java.datapack_exporter.settings.target_minecraft_version.description: |- - The version of Minecraft that you plan on using the data pack in. - -animated_java.datapack_exporter.settings.datapack_mcmeta: Data Pack -animated_java.datapack_exporter.settings.datapack_mcmeta.description: |- - The Data Pack to inject the generated functions into. - This setting should be targeting the pack.mcmeta file of a valid Data Pack. -animated_java.datapack_exporter.settings.datapack_mcmeta.error.unset: |- - You must select a Data Pack folder. -animated_java.datapack_exporter.settings.datapack_mcmeta.error.invalid: |- - The selected path is not a valid Data Pack! - Make sure you've selected the correct pack.mcmeta, and that the Data Pack has a data folder. - -animated_java.datapack_exporter.settings.interpolation_duration: Interpolation Duration -animated_java.datapack_exporter.settings.interpolation_duration.description: |- - How much time (in ticks) each keyframe will attempt to spend smoothing changes between keyframes on the client. - Setting this higher than 1 will cause the animation to be smoother, but lose precision. - Setting this to 0 will disable interpolation. - -animated_java.datapack_exporter.settings.enable_outdated_rig_warning: Enable Outdated Rig Warning -animated_java.datapack_exporter.settings.enable_outdated_rig_warning.description: |- - Whether to show a warning in-game when a Rig is found that was summoned before the most recent export. - -animated_java.datapack_exporter.settings.use_component_system: Use Component System -animated_java.datapack_exporter.settings.use_component_system.description: |- - Whether to use the component system for the exported Data Pack. - Enable this setting to make the Data Pack work with 1.20.5 and above. - -animated_java.datapack_exporter.settings.root_entity_nbt: Root Entity NBT -animated_java.datapack_exporter.settings.root_entity_nbt.description: |- - Custom NBT to apply to the root entity of the Rig. - Note that some internal NBT tags will take priority over this setting. - -animated_java.datapack_exporter.settings.function_toggles_group: Function Toggles - -animated_java.datapack_exporter.settings.include_variant_summon_functions: Include Variant Summon Functions -animated_java.datapack_exporter.settings.include_variant_summon_functions.description: |- - Whether to include functions that summon each variant of the Rig in the exported Data Pack. - These functions are equivalent to setting #variant aj.id when running the summon function. - -animated_java.datapack_exporter.settings.include_apply_variant_functions: Include Apply Variant Functions -animated_java.datapack_exporter.settings.include_apply_variant_functions.description: |- - Whether to include functions that apply each variant of the Rig in the exported Data Pack. - Note that even if these functions are disabled, you will still be able to swap variants in animations using variant keyframes. - -animated_java.datapack_exporter.settings.include_uninstall_function: Include Uninstall Function -animated_java.datapack_exporter.settings.include_uninstall_function.description: |- - Whether to include the uninstall function in the exported Data Pack. - -animated_java.datapack_exporter.settings.include_pause_all_animations_function: Include Pause All Animations Function -animated_java.datapack_exporter.settings.include_pause_all_animations_function.description: |- - Whether to include the pause_all_animations function in the exported Data Pack. - -animated_java.datapack_exporter.settings.include_remove_rigs_function: Include Remove Rigs Function -animated_java.datapack_exporter.settings.include_remove_rigs_function.description: |- - Whether to include the remove/rigs function in the exported Data Pack. - -animated_java.datapack_exporter.settings.include_remove_all_function: Include Remove All Function -animated_java.datapack_exporter.settings.include_remove_all_function.description: |- - Whether to include the remove/all function in the exported Data Pack. - -animated_java.datapack_exporter.settings.function_tag_toggles_group: Function Tag Toggles - -animated_java.datapack_exporter.settings.include_on_load_function_tags: Include On Load Function Tags -animated_java.datapack_exporter.settings.include_on_load_function_tags.description: |- - Whether to include the on_load function tags in the exported Data Pack. - -animated_java.datapack_exporter.settings.include_on_tick_function_tags: Include On Tick Function Tags -animated_java.datapack_exporter.settings.include_on_tick_function_tags.description: |- - Whether to include the on_tick function tags in the exported Data Pack. - -animated_java.datapack_exporter.settings.include_on_summon_function_tags: Include On Summon Function Tags -animated_java.datapack_exporter.settings.include_on_summon_function_tags.description: |- - Whether to include the on_summon function tags in the exported Data Pack. - -animated_java.datapack_exporter.settings.include_on_remove_function_tags: Include On Remove Function Tags -animated_java.datapack_exporter.settings.include_on_remove_function_tags.description: |- - Whether to include the on_uninstall function tags in the exported Data Pack. diff --git a/exporters/datapackExporter/lang/zh_cn.yaml b/exporters/datapackExporter/lang/zh_cn.yaml deleted file mode 100644 index e8a50da8..00000000 --- a/exporters/datapackExporter/lang/zh_cn.yaml +++ /dev/null @@ -1,77 +0,0 @@ -# Animation Exporter -animated_java.datapack_exporter.name: 数据包导出器 - -animated_java.datapack_exporter.settings.target_minecraft_version: Minecraft版本 -animated_java.datapack_exporter.settings.target_minecraft_version.description: |- - 生成的数据包所对应的Minecraft版本。 - -animated_java.datapack_exporter.settings.datapack_mcmeta: 数据包 -animated_java.datapack_exporter.settings.datapack_mcmeta.description: |- - 存放生成函数的数据包。 - 该项应选择有效数据包内的 pack.mcmeta 文件。 -animated_java.datapack_exporter.settings.datapack_mcmeta.error.unset: |- - 必须选择一个数据包文件夹。 -animated_java.datapack_exporter.settings.datapack_mcmeta.error.invalid: |- - 所选路径并非有效的数据包! - 确保选择的是 pack.mcmeta 文件,且数据包中存在 data 文件夹。 - -animated_java.datapack_exporter.settings.interpolation_duration: 插值持续时间 -animated_java.datapack_exporter.settings.interpolation_duration.description: |- - 各关键帧之间变化时,在客户端上平滑过渡的时间(刻为单位)。 - 设置的值高于1时能让动画更顺畅,但损失精度。 - 设置的值等于0时将禁用插值。 - -animated_java.datapack_exporter.settings.enable_outdated_rig_warning: 警告过期骨骼 -animated_java.datapack_exporter.settings.enable_outdated_rig_warning.description: |- - 在游戏内检测到在最近导出前已存在的骨骼时,是否显示警告。 - -animated_java.datapack_exporter.settings.root_entity_nbt: 根实体NBT -animated_java.datapack_exporter.settings.root_entity_nbt.description: |- - 应用到骨骼根实体的自定义NBT。 - 但该数据包所使用到的部分内部NBT标签不可被自定义。 - -animated_java.datapack_exporter.settings.function_toggles_group: 函数可选项 - -animated_java.datapack_exporter.settings.include_variant_summon_functions: 包含变体召唤函数 -animated_java.datapack_exporter.settings.include_variant_summon_functions.description: |- - 是否在导出时包含可以召唤各骨骼变体的函数。 - 该召唤函数相当于自行设置 #variant aj.id。 - -animated_java.datapack_exporter.settings.include_apply_variant_functions: 包含变体切换函数 -animated_java.datapack_exporter.settings.include_apply_variant_functions.description: |- - 是否在导出时包含切换各骨骼变体的函数。 - 即使禁用该项,仍然可以在动画里通过变体关键帧切换变体。 - -animated_java.datapack_exporter.settings.include_uninstall_function: 包含卸载函数 -animated_java.datapack_exporter.settings.include_uninstall_function.description: |- - 是否在导出时包含 uninstall 函数。 - -animated_java.datapack_exporter.settings.include_pause_all_animations_function: 包含暂停所有动画函数 -animated_java.datapack_exporter.settings.include_pause_all_animations_function.description: |- - 是否在导出时包含 pause_all_animations 函数。 - -animated_java.datapack_exporter.settings.include_remove_rigs_function: 包含骨骼移除函数 -animated_java.datapack_exporter.settings.include_remove_rigs_function.description: |- - 是否在导出时包含 remove/rigs 函数。 - -animated_java.datapack_exporter.settings.include_remove_all_function: 包含移除所有函数 -animated_java.datapack_exporter.settings.include_remove_all_function.description: |- - 是否在导出时包含 remove/all 函数。 - -animated_java.datapack_exporter.settings.function_tag_toggles_group: 函数标签可选项 - -animated_java.datapack_exporter.settings.include_on_load_function_tags: 包含加载函数标签 -animated_java.datapack_exporter.settings.include_on_load_function_tags.description: |- - 是否在导出时包含 on_load 函数标签。 - -animated_java.datapack_exporter.settings.include_on_tick_function_tags: 包含高频函数标签 -animated_java.datapack_exporter.settings.include_on_tick_function_tags.description: |- - 是否在导出时包含 on_tick 函数标签。 - -animated_java.datapack_exporter.settings.include_on_summon_function_tags: 包含召唤函数标签 -animated_java.datapack_exporter.settings.include_on_summon_function_tags.description: |- - 是否在导出时包含 on_summon 函数标签。 - -animated_java.datapack_exporter.settings.include_on_remove_function_tags: 包含移除函数标签 -animated_java.datapack_exporter.settings.include_on_remove_function_tags.description: |- - 是否在导出时包含 on_uninstall 函数标签。 \ No newline at end of file diff --git a/exporters/datapackExporter/tsconfig.json b/exporters/datapackExporter/tsconfig.json deleted file mode 100644 index 2dad2dce..00000000 --- a/exporters/datapackExporter/tsconfig.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "include": ["./**/*"], - "compilerOptions": { - "types": ["node", "D:/github-repos/animated-java-api-types/types"] - } -} diff --git a/exporters/jsonExporter/LICENSE b/exporters/jsonExporter/LICENSE deleted file mode 100644 index fd57f2cd..00000000 --- a/exporters/jsonExporter/LICENSE +++ /dev/null @@ -1,677 +0,0 @@ -Animated Java JSON Exporter - An exporter plugin for the Animated Java Blockbench Plugin -Copyright (C) 2023 Titus Evans - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published -by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. - -You should have received a copy of the GNU Affero General Public License -along with this program. If not, see . - - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/exporters/jsonExporter/index.ts b/exporters/jsonExporter/index.ts deleted file mode 100644 index 7d405a7b..00000000 --- a/exporters/jsonExporter/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { loadExporter } from './jsonExporter' - -requestAnimationFrame(function repeat() { - if (AnimatedJava?.loaded) loadExporter() - else requestAnimationFrame(repeat) -}) diff --git a/exporters/jsonExporter/jsonConstructor.ts b/exporters/jsonExporter/jsonConstructor.ts deleted file mode 100644 index 90994782..00000000 --- a/exporters/jsonExporter/jsonConstructor.ts +++ /dev/null @@ -1,236 +0,0 @@ -type NodeType = 'bone' | 'camera' | 'locator' - -interface ISerializedVariantModel { - custom_model_data: number - resource_location: string -} - -interface ISerializedVariant { - name: string - uuid: string - models: Record - affected_bones: string[] - affected_bones_is_a_whitelist: boolean -} - -interface ISerializedAnimationFrame { - nodes: ISerializedNodeAnimationFrameEntry[] - time: number - variant?: { - uuid: string - execute_condition?: string - } - commands?: { - commands: string - execute_condition?: string - } -} - -interface ISerializedNodeAnimationFrameEntry { - uuid: string - matrix: number[] -} - -interface ISerealizedAnimation { - start_delay?: number - loop_delay?: number - duration: number - loop_mode: 'once' | 'hold' | 'loop' - affected_bones: string[] - affected_bones_is_a_whitelist: boolean - frames: ISerializedAnimationFrame[] -} - -interface ISerializedNode { - type: NodeType - name: string - uuid: string - nbt: string - entity_type?: string - custom_model_data?: number - resource_location?: string - bounding_box?: THREE.Box3 -} - -interface ISerializedVariant { - name: string - uuid: string - models: Record - affected_bones: string[] - affected_bones_is_a_whitelist: boolean -} - -export interface IJSONExport { - project_settings: Record - exporter_settings: Record - rig: { - default_pose: ISerializedNodeAnimationFrameEntry[] - node_map: Record - } - variants: Record - animations: Record -} - -function serializeProjectSettings(): Record { - const project_settings = {} - for (const [name, setting] of Object.entries(Project!.animated_java_settings)) { - project_settings[name] = setting._save() - } - return project_settings -} - -function serializeExporterSettings(exporterSettings: Record): Record { - const exporter_settings = {} - for (const [name, setting] of Object.entries(exporterSettings)) { - exporter_settings[name] = setting._save() - } - return exporter_settings -} - -function serializeNodeAnimationFrameEntry( - node: AnimatedJava.IAnimationNode -): ISerializedNodeAnimationFrameEntry { - const { type, uuid, matrix } = node - return { - uuid, - matrix: matrix.toArray(), - } -} - -function serializeNodeMap( - nodeMap: Record -): Record { - const serializedNodeMap: Record = {} - for (const uuid in nodeMap) { - const node = nodeMap[uuid] - const type = node.type - const name = node.name - - switch (type) { - case 'bone': { - const custom_model_data = node.customModelData - const resource_location = node.resourceLocation - const bounding_box = node.boundingBox - - serializedNodeMap[uuid] = { - type, - name, - uuid, - nbt: node.nbt, - custom_model_data, - resource_location, - bounding_box: bounding_box, - } - - break - } - case 'camera': - case 'locator': { - serializedNodeMap[uuid] = { - type, - name, - uuid, - nbt: node.nbt, - entity_type: node.entity_type, - } - } - } - } - return serializedNodeMap -} - -function serializeVariant( - exportOptions: AnimatedJava.IAnimatedJavaExportData, - variant: AnimatedJava.Variant -): ISerializedVariant { - const name = variant.name - const uuid = variant.uuid - const models = {} - const affected_bones = variant.affectedBones.map(v => v.value) - const affected_bones_is_a_whitelist = variant.affectedBonesIsAWhitelist - - for (const [uuid, model] of Object.entries(exportOptions.rig.variantModels[name])) { - models[uuid] = { - custom_model_data: model.customModelData, - resource_location: model.resourceLocation, - } - } - - return { - name, - uuid, - models, - affected_bones, - affected_bones_is_a_whitelist, - } -} - -function serializeAnimationFrame( - frame: AnimatedJava.IRenderedAnimation['frames'][any] -): ISerializedAnimationFrame { - const nodes = frame.nodes.map(serializeNodeAnimationFrameEntry) - const time = frame.time - const variant = frame.variant - const commands = frame.commands - - return { - nodes, - time, - variant, - commands, - } -} - -function serializeAnimation(animation: AnimatedJava.IRenderedAnimation): ISerealizedAnimation { - const start_delay = animation.startDelay - const loop_delay = animation.loopDelay - const frames = animation.frames.map(serializeAnimationFrame) - const duration = animation.duration - const loop_mode = animation.loopMode - const bbAnimation = Blockbench.Animation.all.find( - v => v instanceof Blockbench.Animation && v.name === animation.name - ) as _Animation - const affected_bones = bbAnimation.affected_bones.map(v => v.value) - const affected_bones_is_a_whitelist = bbAnimation.affected_bones_is_a_whitelist - - return { - start_delay, - loop_delay, - frames, - duration, - loop_mode, - affected_bones, - affected_bones_is_a_whitelist, - } -} - -export function constructJSON( - exportOptions: AnimatedJava.IAnimatedJavaExportData -): IJSONExport { - const {} = AnimatedJava.API - const project_settings = serializeProjectSettings() - const exporter_settings = serializeExporterSettings(exportOptions.exporterSettings) - const rig = { - default_pose: exportOptions.rig.defaultPose.map(serializeNodeAnimationFrameEntry), - node_map: serializeNodeMap(exportOptions.rig.nodeMap), - } - const variants = {} - const animations = {} - - for (const variant of Project!.animated_java_variants.variants) { - if (variant.default) continue - variants[variant.uuid] = serializeVariant(exportOptions, variant) - } - - for (const animation of exportOptions.renderedAnimations) { - animations[animation.name] = serializeAnimation(animation) - } - - return { - project_settings, - exporter_settings, - rig, - variants, - animations, - } -} diff --git a/exporters/jsonExporter/jsonExporter.ts b/exporters/jsonExporter/jsonExporter.ts deleted file mode 100644 index 6bb162be..00000000 --- a/exporters/jsonExporter/jsonExporter.ts +++ /dev/null @@ -1,75 +0,0 @@ -// @ts-ignore -import en from './lang/en.yaml' -// @ts-ignore -import de from './lang/de.yaml' -// @ts-ignore -import zh from './lang/zh_cn.yaml' -import { constructJSON } from './jsonConstructor' - -export function loadExporter() { - const API = AnimatedJava.API - - API.addTranslations('en', en as Record) - API.addTranslations('de', de as Record) - API.addTranslations('zh', zh as Record) - - const TRANSLATIONS = { - output_file: { - error: { - empty: API.translate( - 'animated_java.exporters.json_exporter.settings.output_file.error.empty' - ), - }, - }, - } - - new API.Exporter({ - id: 'animated_java:json_exporter', - name: API.translate('animated_java.exporters.json_exporter.name'), - description: API.translate('animated_java.exporters.json_exporter.description'), - getSettings() { - return { - output_file: new API.Settings.FileSetting( - { - id: 'animated_java:json_exporter/output_file', - displayName: API.translate( - 'animated_java.exporters.json_exporter.settings.output_file' - ), - description: API.translate( - 'animated_java.exporters.json_exporter.settings.output_file.description' - ).split('\n'), - defaultValue: '', - }, - function onUpdate(setting) { - if (!setting.value) { - setting.infoPopup = API.createInfo( - 'error', - TRANSLATIONS.output_file.error.empty - ) - } - } - ), - } - }, - settingsStructure: [ - { - type: 'setting', - settingId: 'animated_java:json_exporter/output_file', - }, - ], - async export(exportOptions) { - console.log('Export Options:', exportOptions) - - const json = constructJSON(exportOptions) - - console.log('Exported JSON:', json) - - await fs.promises.writeFile( - exportOptions.exporterSettings.output_file.value, - exportOptions.ajSettings.minify_output.value - ? JSON.stringify(json) - : JSON.stringify(json, null, '\t') - ) - }, - }) -} diff --git a/exporters/jsonExporter/jsonStructure.json b/exporters/jsonExporter/jsonStructure.json deleted file mode 100644 index 80d204a4..00000000 --- a/exporters/jsonExporter/jsonStructure.json +++ /dev/null @@ -1,268 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "JSON Exporter Structure", - "type": "object", - "required": ["project_settings", "exporter_settings", "rig", "variants", "animations"], - "properties": { - "project_settings": { - "type": "object", - "description": "The project settings used to export the file." - }, - "exporter_settings": { - "type": "object", - "description": "The exporter settings used to export the file." - }, - "rig": { - "type": "object", - "required": ["default_pose", "node_map"], - "properties": { - "default_pose": { - "type": "array", - "description": "The default pose of the rig.", - "items": { - "$ref": "#/definitions/animation_frame" - } - }, - "node_map": { - "type": "object", - "description": "A map of nodes by UUID.", - "patternProperties": { - ".*": { - "$ref": "#/definitions/node" - } - } - } - } - }, - "variants": { - "type": "object", - "description": "A map of variants by uuid.", - "patternProperties": { - ".*": { - "$ref": "#/definitions/variant" - } - } - }, - "animations": { - "type": "object", - "description": "A map of animations by name.", - "patternProperties": { - ".*": { - "$ref": "#/definitions/animation" - } - } - } - }, - "definitions": { - "node_type": { - "enum": ["bone", "locator", "camera"] - }, - "node": { - "type": "object", - "required": ["type", "name", "uuid"], - "properties": { - "type": { - "$ref": "#/definitions/node_type" - }, - "name": { - "type": "string" - }, - "uuid": { - "type": "string" - }, - "custom_model_data": { - "type": "number" - }, - "resource_location": { - "type": "string" - }, - "nbt": { - "type": "string" - }, - "entity_type": { - "type": "string" - }, - "bounding_box": { - "type": "object", - "description": "The bounding box of the bone.", - "properties": { - "min": { - "type": "object", - "properties": { - "x": { - "type": "number" - }, - "y": { - "type": "number" - }, - "z": { - "type": "number" - } - } - }, - "max": { - "type": "object", - "properties": { - "x": { - "type": "number" - }, - "y": { - "type": "number" - }, - "z": { - "type": "number" - } - } - } - } - } - } - }, - "variant": { - "type": "object", - "required": ["name", "uuid", "affected_bones", "affected_bones_is_a_whitelist"], - "properties": { - "name": { - "type": "string" - }, - "uuid": { - "type": "string" - }, - "models": { - "type": "object", - "description": "A map of modified bones by UUID.", - "patternProperties": { - ".*": { - "type": "object", - "properties": { - "custom_model_data": { - "type": "number", - "description": "The custom model data to use for this bone." - }, - "resource_location": { - "type": "string", - "description": "The resource location of the model to use for this bone." - } - } - } - } - }, - "affected_bones": { - "type": "array", - "description": "A list of bones (by UUID) affected by this variant.", - "items": { - "type": "string" - } - }, - "affected_bones_is_a_whitelist": { - "type": "boolean", - "description": "If true, only the bones in the list are affected. If false, all bones except those in the list are affected." - } - } - }, - "animation": { - "type": "object", - "required": [ - "frames", - "duration", - "loop_mode", - "affected_bones", - "affected_bones_is_a_whitelist" - ], - "properties": { - "start_delay": { - "type": "number", - "minimum": 0 - }, - "loop_delay": { - "type": "number", - "minimum": 0 - }, - "duration": { - "type": "number", - "minimum": 0 - }, - "loop_mode": { - "$ref": "#/definitions/animation_loop_mode" - }, - "affected_bones": { - "type": "array", - "description": "A list of bones (by UUID) affected by this animation.", - "items": { - "type": "string" - } - }, - "affected_bones_is_a_whitelist": { - "type": "boolean", - "description": "If true, only the bones in the list are affected. If false, all bones except those in the list are affected." - }, - "frames": { - "type": "array", - "items": { - "$ref": "#/definitions/animation_frame" - } - } - } - }, - "loop_mode": { - "enum": ["once", "hold", "loop"] - }, - "animation_frame": { - "type": "object", - "required": ["time", "nodes"], - "properties": { - "nodes": { - "type": "array", - "description": "A list of nodes and their new transforms for this frame.\nNodes that do not change this frame are omitted.", - "items": { - "$ref": "#/definitions/node_animation_frame_entry" - } - }, - "commands": { - "type": "object", - "properties": { - "commands": { - "type": "string", - "description": "The contents of a function to execute on this frame." - }, - "execute_condition": { - "type": "string", - "description": "The condition to execute the variant switch." - } - } - }, - "variant": { - "type": "object", - "properties": { - "variant": { - "type": "string", - "description": "The UUID of the variant to switch to." - }, - "execute_condition": { - "type": "string", - "description": "The condition to execute the variant switch." - } - } - } - } - }, - "node_animation_frame_entry": { - "type": "object", - "required": ["type", "uuid", "matrix"], - "properties": { - "uuid": { - "type": "string" - }, - "matrix": { - "type": "array", - "items": { - "type": "number" - } - }, - "interpolation": { - "enum": ["default", "instant"] - } - } - } - } -} diff --git a/exporters/jsonExporter/lang/en.yaml b/exporters/jsonExporter/lang/en.yaml deleted file mode 100644 index eaf43331..00000000 --- a/exporters/jsonExporter/lang/en.yaml +++ /dev/null @@ -1,9 +0,0 @@ -# JSON Exporter -animated_java.exporters.json_exporter.name: JSON Exporter -animated_java.exporters.json_exporter.description: Exports an Animated Java Rig as a JSON file for use in plugins or mods. - -# Settings -animated_java.exporters.json_exporter.settings.output_file: Output File -animated_java.exporters.json_exporter.settings.output_file.description: The file to export to. -animated_java.exporters.json_exporter.settings.output_file.error.empty: |- - The output file cannot be empty. diff --git a/exporters/jsonExporter/lang/zh_cn.yaml b/exporters/jsonExporter/lang/zh_cn.yaml deleted file mode 100644 index 43456271..00000000 --- a/exporters/jsonExporter/lang/zh_cn.yaml +++ /dev/null @@ -1,9 +0,0 @@ -# JSON Exporter -animated_java.exporters.json_exporter.name: JSON导出器 -animated_java.exporters.json_exporter.description: 导出 Animated Java 骨骼为可被用于插件或模组的 JSON 文件。 - -# Settings -animated_java.exporters.json_exporter.settings.output_file: 输出文件 -animated_java.exporters.json_exporter.settings.output_file.description: 需要导出的文件。 -animated_java.exporters.json_exporter.settings.output_file.error.empty: |- - 输出文件不能为空。 \ No newline at end of file diff --git a/exporters/jsonExporter/tsconfig.json b/exporters/jsonExporter/tsconfig.json deleted file mode 100644 index 2dad2dce..00000000 --- a/exporters/jsonExporter/tsconfig.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "include": ["./**/*"], - "compilerOptions": { - "types": ["node", "D:/github-repos/animated-java-api-types/types"] - } -} diff --git a/package.json b/package.json index ac51fefc..07c89fd4 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,9 @@ "type": "module", "name": "animated_java", "title": "Animated Java", - "version": "0.4.8", - "min_blockbench_version": "4.9.4", + "version": "0.5.0", + "display_version": "1.0.0-pre1", + "min_blockbench_version": "4.10.0", "author": { "name": "Titus Evans (SnaveSutit)", "email": "snavesutit@gmail.com", @@ -22,39 +23,34 @@ } ], "special_thanks": [ + "Howzieky", + "MulverineX", "YokaiS", "Ancientkingg", "Ersatz", - "dragonmaster95", "CubeDeveloper", "__SK__", "MrMakistein", "Flubberschnub", - "CommandWitchery", "legitimoose", "VelVoxelRaptor", "_JeffWooden", "Onnowhere", - "destruc7i0n", "DoubleFelix", - "Eriol_Eandur", "JayPeaSize", "Kastle", - "Kyle10BC", "Matt/Arwen", "Nerdrope", - "Onnowhere", "Sprunkles", "Suso", "taj", "TheRedstoneer", "Totigonzales", - "Violet", + "VioletXIV", "CommanderRedstone", - "brooke-zb", "FabulousCodingFox", - "HURDOO", - "ououn" + "ououn", + "123yeah_boi321" ], "repository": { "type": "github", @@ -80,23 +76,29 @@ "@typescript-eslint/parser": "^5.54.0", "blockbench-types": "https://github.com/SnaveSutit/blockbench-types.git", "esbuild": "^0.17.10", + "esbuild-plugin-import-glob": "^0.1.1", "esbuild-plugin-inline-image": "^0.0.9", + "esbuild-plugin-inline-worker": "^0.1.1", "esbuild-plugin-svelte": "^0.1.1", "eslint": "^8.35.0", "firebase": "^9.19.0", "fs-extra": "^11.1.0", "js-yaml": "^4.1.0", "prettier": "^2.5.1", - "svelte": "^3.50.1", - "svelte-preprocess": "^4.10.7", + "svelte": "^3.55.1", + "svelte-awesome-color-picker": "^3.0.0-beta.7", + "svelte-preprocess": "^5.0.1", "svelte-preprocess-esbuild": "^3.0.1", - "typescript": "^4.5.5", - "vue": "^3.2.33" + "typescript": "^4.5.5" }, "dependencies": { - "deepslate": "^0.17.2", + "deepslate": "^0.19.2", + "fflate": "^0.8.2", + "generic-stream": "^1.2.6", "marked": "^4.3.0", "marked-gfm-heading-id": "^3.0.0", - "svelte-ace": "^1.0.21" + "mc-build": "^3.3.1", + "svelte-ace": "^1.0.21", + "svelte-dnd-action": "^0.9.38" } } diff --git a/schemas/ajblueprint.schema.json b/schemas/ajblueprint.schema.json new file mode 100644 index 00000000..98a0298b --- /dev/null +++ b/schemas/ajblueprint.schema.json @@ -0,0 +1,572 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "properties": { + "meta": { + "type": "object", + "required": ["format_version", "model_format"], + "properties": { + "format_version": { + "type": "string", + "enum": ["1.0.0"] + }, + "model_format": { + "const": "animated_java_blueprint" + } + } + }, + "project_settings": { + "type": "object", + "properties": { + "export_namespace": { + "type": "string" + }, + "enable_plugin_mode": { + "type": "boolean" + }, + "enable_resource_pack": { + "type": "boolean" + }, + "display_item": { + "type": "string" + }, + "custom_model_data_offset": { + "type": "integer" + }, + "enable_advanced_resource_pack_settings": { + "type": "boolean" + }, + "resource_pack": { + "description": "The path to the resource pack that you want to export into.", + "type": "string" + }, + "display_item_path": { + "description": "Only used if advanced resource pack settings are enabled. The path to the display item's texture in the resource pack.", + "type": "string" + }, + "model_folder": { + "description": "Only used if advanced resource pack settings are enabled. The folder that you want the blueprint's generated models to be exported into.", + "type": "string" + }, + "texture_folder": { + "description": "Only used if advanced resource pack settings are enabled. The folder that you want the blueprint's generated textures to be exported into.", + "type": "string" + }, + "enable_data_pack": { + "type": "boolean" + }, + "enable_advanced_data_pack_settings": { + "type": "boolean" + }, + "data_pack": { + "description": "The path to the data pack that you want to export into.", + "type": "string" + } + } + }, + "resolution": { + "type": "object", + "required": ["width", "height"], + "properties": { + "width": { + "type": "integer", + "minimum": 1, + "maximum": 4096 + }, + "height": { + "type": "integer", + "minimum": 1, + "maximum": 4096 + } + } + }, + "elements": { + "type": "array", + "items": { + "$ref": "#/definitions/element" + } + }, + "outliner": { + "type": "array", + "items": { + "$ref": "#/definitions/outliner_bone" + } + }, + "textures": { + "type": "array", + "items": { + "$ref": "#/definitions/texture" + } + }, + "animations": { + "type": "array", + "items": { + "$ref": "#/definitions/animation" + } + }, + "animation_controllers": { + "type": "array", + "items": { + "$ref": "#/definitions/animation_controller" + } + } + }, + "definitions": { + "element": { + "allOf": [ + { + "if": { + "required": ["type"], + "properties": { + "type": { + "const": "cube" + } + } + }, + "then": { + "$ref": "#/definitions/cube_element" + } + }, + { + "if": { + "required": ["type"], + "properties": { + "type": { + "const": "locator" + } + } + }, + "then": { + "$ref": "#/definitions/locator_element" + } + }, + { + "if": { + "required": ["type"], + "properties": { + "type": { + "const": "camera" + } + } + }, + "then": { + "$ref": "#/definitions/camera_element" + } + } + ] + }, + "camera_element": { + "type": "object", + "required": ["type", "name", "position", "rotation", "uuid"], + "properties": { + "type": { + "const": "camera" + }, + "name": { + "type": "string" + }, + "uuid": { + "type": "string" + }, + "position": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3, + "maxItems": 3 + }, + "rotation": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3, + "maxItems": 3 + } + } + }, + "locator_element": { + "type": "object", + "required": ["type", "name", "position", "rotation", "uuid"], + "properties": { + "type": { + "const": "locator" + }, + "name": { + "type": "string" + }, + "uuid": { + "type": "string" + }, + "position": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3, + "maxItems": 3 + }, + "rotation": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3, + "maxItems": 3 + } + } + }, + "cube_element": { + "type": "object", + "required": ["type", "name", "uuid", "from", "to", "faces"], + "properties": { + "type": { + "const": "cube" + }, + "name": { + "type": "string" + }, + "uuid": { + "type": "string" + }, + "rescale": { + "type": "boolean" + }, + "from": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3, + "maxItems": 3 + }, + "to": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3, + "maxItems": 3 + }, + "origin": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3, + "maxItems": 3 + }, + "faces": { + "type": "object", + "properties": { + "north": { + "$ref": "#/definitions/face" + }, + "east": { + "$ref": "#/definitions/face" + }, + "south": { + "$ref": "#/definitions/face" + }, + "west": { + "$ref": "#/definitions/face" + }, + "up": { + "$ref": "#/definitions/face" + } + } + } + } + }, + "face": { + "type": "object", + "required": ["uv"], + "properties": { + "uv": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 4, + "maxItems": 4 + } + } + }, + "outliner_bone": { + "type": "object", + "required": ["name", "uuid", "children", "origin", "export", "configs"], + "properties": { + "name": { + "type": "string" + }, + "uuid": { + "type": "string" + }, + "export": { + "description": "Whether or not this element should be included in the generated rig.", + "type": "boolean", + "default": true + }, + "origin": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3, + "maxItems": 3 + }, + "children": { + "description": "List of UUIDs of child elements", + "type": "array", + "items": { + "type": "string" + } + }, + "configs": { + "type": "object", + "properties": { + "default": { + "description": "The default bone config. This will be applied when the rig is summoned.", + "$ref": "#/definitions/bone_config" + }, + "variants": { + "type": "object", + "description": "A map of variant UUIDS to bone configs. Will only contain configs for variants that are different from the default config. These are only applied when a variant is applied. You must apply another variant to remove/change the config.", + "patternProperties": { + ".+": { + "$ref": "#/definitions/bone_config" + } + } + } + } + } + } + }, + "texture": { + "type": "object", + "required": ["name", "uuid", "source", "mode"], + "properties": { + "name": { + "type": "string" + }, + "uuid": { + "type": "string" + }, + "source": { + "type": "string" + }, + "mode": { + "type": "string", + "enum": ["bitmap"] + } + } + }, + "animation": { + "type": "object", + "required": ["name", "uuid", "bones", "frames", "loop", "length", "snapping"], + "properties": { + "name": { + "type": "string" + }, + "uuid": { + "type": "string" + }, + "loop": { + "description": "The animation's loop mode.", + "type": "string", + "enum": ["loop", "once", "hold"] + }, + "override": { + "description": "Whether or not this animation should override other animations.", + "type": "boolean", + "default": false + }, + "length": { + "description": "The length of the animation in seconds.", + "type": "number", + "minimum": 0 + }, + "snapping": { + "description": "Effectively the maximum Keyframes-per-second of the animation.", + "type": "boolean", + "default": false + }, + "blend_weight": { + "description": "The weight of the animation when blending.", + "type": "number", + "minimum": 0, + "maximum": 1 + }, + "start_delay": { + "description": "The delay before the animation starts playing.", + "type": "number", + "minimum": 0 + }, + "loop_delay": { + "description": "The delay before the animation loops.", + "type": "number", + "minimum": 0 + } + } + }, + "animation_controller": { + "type": "object", + "required": ["name", "uuid", "states", "transitions"], + "properties": { + "name": { + "type": "string" + }, + "uuid": { + "type": "string" + }, + "initial_state": { + "type": "string" + }, + "states": { + "type": "array", + "items": { + "$ref": "#/definitions/animation_controller_state" + } + }, + "transitions": { + "type": "array", + "items": { + "$ref": "#/definitions/animation_controller_transition" + } + } + } + }, + "animation_controller_state": { + "type": "object", + "required": ["name", "uuid", "animations"], + "properties": { + "name": { + "type": "string" + }, + "uuid": { + "type": "string" + }, + "animations": { + "type": "array", + "items": { + "$ref": "#/definitions/animation_controller_state_animation" + } + }, + "transitions": { + "type": "array", + "items": { + "$ref": "#/definitions/animation_controller_transition" + } + }, + "on_entry": { + "type": "string" + }, + "on_exit": { + "type": "string" + }, + "blend_transition": { + "type": "number" + }, + "blend_via_shortest_path": { + "type": "boolean" + } + } + }, + "animation_controller_transition": { + "type": "object", + "required": ["uuid", "target", "condition"], + "properties": { + "uuid": { + "type": "string" + }, + "target": { + "type": "string" + }, + "condition": { + "type": "string" + } + } + }, + "animation_controller_state_animation": { + "type": "object", + "required": ["uuid", "key", "animation"], + "properties": { + "uuid": { + "type": "string" + }, + "key": { + "description": "The animation's key. Usually identical to the name of the animation but can be modified by the user. Not sure if this will be used by AJ or not.", + "type": "string" + }, + "animation": { + "type": "string" + }, + "blend_value": { + "type": "string" + } + } + }, + "bone_config": { + "type": "object", + "required": [ + "inherit_settings", + "use_nbt", + "glowing", + "glow_color", + "shadow_radius", + "shadow_strength", + "brightness_override", + "enchanted", + "invisible", + "nbt" + ], + "properties": { + "inherit_settings": { + "type": "boolean", + "default": true + }, + "use_nbt": { + "type": "boolean", + "default": false + }, + "glowing": { + "type": "boolean", + "default": false + }, + "glow_color": { + "type": "string", + "pattern": "^#[0-9a-fA-F]{6}$", + "default": "#ffffff" + }, + "shadow_radius": { + "type": "number", + "minimum": 0, + "default": 0 + }, + "shadow_strength": { + "type": "number", + "minimum": 0, + "default": 0 + }, + "brightness_override": { + "type": "number", + "minimum": 0, + "maximum": 15, + "default": 0 + }, + "enchanted": { + "type": "boolean", + "default": false + }, + "invisible": { + "type": "boolean", + "default": false + }, + "nbt": { + "type": "string", + "default": "{}" + } + } + } + } +} diff --git a/src/ajmeta.ts b/src/ajmeta.ts deleted file mode 100644 index 02ba1622..00000000 --- a/src/ajmeta.ts +++ /dev/null @@ -1,59 +0,0 @@ -import * as fs from 'fs/promises' -import * as PACKAGE from '../package.json' - -export interface IAJMetaJSON { - version?: string - projects: Record -} - -export interface IAJMetaProject { - project_name: string - file_list: string[] -} - -export class AJMetaFile { - version: string = PACKAGE.version - projects: Record = {} - - constructor() { - this.projects = {} - } - - addProject(uuid: string, projectName: string, fileList: string[]): IAJMetaProject { - const project = { project_name: projectName, file_list: fileList } - this.projects[uuid] = project - return project - } - - getProject(uuid: string): IAJMetaProject | undefined { - return this.projects[uuid] - } - - toJSON(): IAJMetaJSON { - return { - version: PACKAGE.version, - projects: this.projects, - } - } - - async load(path: string): Promise { - this.projects = {} - - const stringContent = await fs.readFile(path, 'utf-8').catch(e => { - console.warn(`Could not read ajmeta file at ${path}: ${e as string}`) - return '{}' - }) - - let content: IAJMetaJSON - try { - content = JSON.parse(stringContent) - } catch (e: any) { - throw new Error(`Invalid ajmeta file: ${e as string}`) - } - - this.version = content.version || PACKAGE.version - this.projects = content.projects || {} - - return this - } -} diff --git a/src/assets/MinecraftFull.json b/src/assets/MinecraftFull.json new file mode 100644 index 00000000..24be103a --- /dev/null +++ b/src/assets/MinecraftFull.json @@ -0,0 +1,7238 @@ +{ + "glyphs": { + "0": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 347 521 l 347 347 l 174 347 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 694 l 521 694 l 521 868 l 694 868 l 694 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "1": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 174 l 868 174 l 868 0 l 0 0 l 0 174 l 347 174 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 z " + }, + "2": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 694 l 694 694 l 694 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 694 174 l 694 347 l 868 347 l 868 0 l 0 0 l 0 347 z " + }, + "3": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 694 l 694 694 l 694 521 l 347 521 l 347 694 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "4": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 868 1215 l 868 0 l 694 0 l 694 347 l 0 347 l 0 694 l 174 694 l 174 521 l 694 521 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 z " + }, + "5": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 0 694 l 0 1215 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "6": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 694 694 l 694 521 l 174 521 l 174 174 l 0 174 l 0 868 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "7": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 694 l 694 694 l 694 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 0 l 347 0 l 347 521 z " + }, + "8": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 174 694 l 694 694 l 694 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "9": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 347 l 694 347 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1042 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "ƀ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ƃ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ƃ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ƈ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ƈ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ɯ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ɲ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ȟ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ȟ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ȣ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ȣ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ѓ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ї": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ї": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ҕ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ҕ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ҙ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ҙ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ׄ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ׅ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴁ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴂ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴃ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴆ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴈ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴌ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴎ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴙ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴝ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴞ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ᴟ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "‒": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "―": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "‖": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "‗": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "‛": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "‟": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "‣": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "․": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "‥": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⁌": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⁍": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⁐": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⅂": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⅃": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⇐": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⇑": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⇓": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "∊": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "∦": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "∪": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "∬": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "∭": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "≣": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⊣": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⊦": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⊧": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⋄": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⋅": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⌁": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⌙": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⏫": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⏬": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "━": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┍": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┎": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┏": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┑": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┒": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┓": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┕": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┖": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┗": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┙": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┚": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "┛": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▁": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▂": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▃": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▅": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▆": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▇": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▉": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▊": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▋": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▍": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▎": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▏": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▴": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▵": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▾": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "▿": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "◈": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "◉": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "◊": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "◌": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "◍": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "☼": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "☾": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "☿": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "♁": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⚒": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⚕": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⚖": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⚢": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⚣": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⚤": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⛅": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⛆": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⛇": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "✕": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "✖": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "✗": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ɱ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ɒ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⸶": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "⸷": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "Ꜻ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ffl": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "ﬞ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "גּ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "דּ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "הּ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "כֿ": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + " ": { "ha": 694, "x_min": 0, "x_max": 0, "o": "" }, + "!": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 347 l 0 347 l 0 1215 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "\"": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 347 1215 l 521 1215 l 521 868 l 347 868 l 347 1215 z " + }, + "#": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 1215 l 694 1215 l 694 868 l 868 868 l 868 694 l 694 694 l 694 521 l 868 521 l 868 347 l 694 347 l 694 0 l 521 0 l 521 347 l 347 347 l 347 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 347 694 l 347 521 l 521 521 l 521 694 l 347 694 z " + }, + "$": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 868 1042 l 868 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 174 694 l 694 694 l 694 521 l 174 521 l 174 694 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 0 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 0 174 l 0 347 z " + }, + "%": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "&": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 521 l 694 521 l 694 174 l 521 174 l 521 347 l 347 347 l 347 521 l 174 521 l 174 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "'": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 z " + }, + "(": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + ")": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 347 868 l 521 868 l 521 347 l 347 347 l 347 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "*": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "+": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 694 l 868 694 l 868 521 l 521 521 l 521 174 l 347 174 l 347 521 l 0 521 l 0 694 l 347 694 l 347 1042 z " + }, + ",": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 174 l 174 174 l 174 -174 l 0 -174 l 0 174 z " + }, + "-": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 694 l 868 694 l 868 521 l 0 521 l 0 694 z " + }, + ".": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "/": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + ":": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + ";": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 0 174 l 174 174 l 174 -174 l 0 -174 l 0 174 z " + }, + "<": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "=": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 0 694 l 0 868 m 0 347 l 868 347 l 868 174 l 0 174 l 0 347 z " + }, + ">": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "?": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "@": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1042 l 868 1042 l 868 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 0 l 0 0 l 0 868 m 868 868 l 1042 868 l 1042 174 l 347 174 l 347 694 l 694 694 l 694 521 l 521 521 l 521 347 l 868 347 l 868 868 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "A": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 694 868 l 694 1042 l 868 1042 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1042 z " + }, + "B": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "C": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "D": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 z " + }, + "E": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 521 868 l 521 694 l 174 694 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1215 z " + }, + "F": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 521 868 l 521 694 l 174 694 l 174 0 l 0 0 l 0 1215 z " + }, + "G": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 521 868 l 868 868 l 868 174 l 694 174 l 694 694 l 521 694 l 521 868 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "H": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 1215 l 868 1215 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 z " + }, + "I": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 174 l 521 174 l 521 0 l 0 0 l 0 174 l 174 174 l 174 1042 l 0 1042 l 0 1215 z " + }, + "J": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "K": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "L": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1215 z " + }, + "M": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "N": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "O": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "P": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "Q": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 347 l 694 347 l 694 1042 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "R": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "S": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "T": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 0 l 347 0 l 347 1042 l 0 1042 l 0 1215 z " + }, + "U": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 1215 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "V": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 521 l 0 521 l 0 1215 m 694 1215 l 868 1215 l 868 521 l 694 521 l 694 1215 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "W": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 1215 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "X": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "Y": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 0 l 347 0 l 347 868 z " + }, + "Z": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 0 1042 l 0 1215 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 868 174 l 868 0 l 0 0 l 0 347 z " + }, + "[": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 521 1215 l 521 1042 l 174 1042 l 174 174 l 521 174 l 521 0 l 0 0 l 0 1215 z " + }, + "\\": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "]": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 521 1215 l 521 0 l 0 0 l 0 174 l 347 174 l 347 1042 l 0 1042 l 0 1215 z " + }, + "^": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 z " + }, + "_": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 0 l 868 0 l 868 -174 l 0 -174 l 0 0 z " + }, + "`": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 z " + }, + "a": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 694 694 l 868 694 l 868 0 l 174 0 l 174 174 l 694 174 l 694 347 l 174 347 l 174 521 l 694 521 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "b": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "c": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "d": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 0 l 174 0 l 174 174 l 694 174 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1215 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 z " + }, + "e": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 694 521 l 694 694 l 868 694 l 868 347 l 174 347 l 174 174 l 0 174 l 0 694 m 174 174 l 868 174 l 868 0 l 174 0 l 174 174 z " + }, + "f": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 694 868 l 694 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 z " + }, + "g": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 0 0 l 694 0 l 694 -174 l 0 -174 l 0 0 z " + }, + "h": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "i": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 0 868 l 174 868 l 174 0 l 0 0 l 0 868 z " + }, + "j": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 694 868 l 868 868 l 868 0 l 694 0 l 694 868 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "k": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "l": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "m": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 347 l 347 347 l 347 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "n": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "o": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "p": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 347 l 694 347 l 694 174 l 174 174 l 174 -174 l 0 -174 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 z " + }, + "q": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 -174 l 694 -174 l 694 174 l 174 174 l 174 347 l 694 347 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 z " + }, + "r": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "s": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 694 521 l 694 347 l 174 347 l 174 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "t": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 694 l 347 694 l 347 174 l 174 174 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "u": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 0 l 174 0 l 174 174 l 694 174 l 694 868 z " + }, + "v": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "w": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 0 l 174 0 l 174 174 l 347 174 l 347 521 l 521 521 l 521 174 l 694 174 l 694 868 z " + }, + "x": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "y": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 868 m 0 0 l 694 0 l 694 -174 l 0 -174 l 0 0 z " + }, + "z": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 694 694 l 694 521 l 521 521 l 521 694 l 0 694 l 0 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 868 174 l 868 0 l 0 0 l 0 174 l 174 174 l 174 347 z " + }, + "{": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "|": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 0 l 0 0 l 0 1215 z " + }, + "}": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "~": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 868 1042 l 868 868 l 521 868 l 521 1042 z " + }, + "¡": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 0 694 l 174 694 l 174 -174 l 0 -174 l 0 694 z " + }, + "¢": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 174 0 l 174 174 z " + }, + "£": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 694 l 694 694 l 694 521 l 347 521 l 347 174 l 868 174 l 868 0 l 0 0 l 0 174 l 174 174 l 174 521 l 0 521 l 0 694 l 174 694 l 174 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "¤": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 868 868 l 868 694 l 347 694 l 347 868 m 1042 868 l 1215 868 l 1215 694 l 1042 694 l 1042 868 m 174 694 l 347 694 l 347 174 l 174 174 l 174 694 m 868 694 l 1042 694 l 1042 174 l 868 174 l 868 694 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 z " + }, + "¥": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 868 694 l 868 521 l 521 521 l 521 347 l 868 347 l 868 174 l 521 174 l 521 0 l 347 0 l 347 174 l 0 174 l 0 347 l 347 347 l 347 521 l 0 521 l 0 694 l 347 694 l 347 868 z " + }, + "¦": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 z " + }, + "§": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 694 521 l 694 347 l 174 347 l 174 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "¨": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 z " + }, + "©": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 347 868 l 868 868 l 868 694 l 521 694 l 521 521 l 868 521 l 868 347 l 347 347 l 347 868 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "ª": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 521 1042 l 694 1042 l 694 521 l 174 521 l 174 694 l 0 694 l 0 868 l 521 868 l 521 1042 m 0 347 l 694 347 l 694 174 l 0 174 l 0 347 z " + }, + "«": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 z " + }, + "¬": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 694 l 868 694 l 868 174 l 694 174 l 694 521 l 0 521 l 0 694 z " + }, + "­": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 521 l 521 521 l 521 347 l 0 347 l 0 521 z " + }, + "®": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 347 868 l 521 868 l 521 694 l 694 694 l 694 521 l 521 521 l 521 347 l 347 347 l 347 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "¯": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 0 1042 l 0 1215 z " + }, + "°": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 z " + }, + "±": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 868 868 l 868 694 l 521 694 l 521 347 l 347 347 l 347 694 l 0 694 l 0 868 l 347 868 l 347 1215 m 0 174 l 868 174 l 868 0 l 0 0 l 0 174 z " + }, + "²": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 694 521 l 694 347 l 0 347 l 0 521 l 174 521 l 174 694 z " + }, + "³": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 z " + }, + "´": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 z " + }, + "µ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 694 174 l 694 0 l 174 0 l 174 -174 l 0 -174 l 0 868 m 694 868 l 868 868 l 868 174 l 694 174 l 694 868 z " + }, + "¶": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 0 l 694 0 l 694 1042 l 521 1042 l 521 0 l 347 0 l 347 694 l 174 694 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 z " + }, + "·": { "ha": 174, "x_min": 0, "x_max": 0, "o": "" }, + "¹": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 521 l 521 521 l 521 347 l 0 347 l 0 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 z " + }, + "º": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 347 l 694 347 l 694 174 l 0 174 l 0 347 z " + }, + "»": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "¼": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1215 694 l 1215 0 l 1042 0 l 1042 174 l 694 174 l 694 521 l 868 521 l 868 347 l 1042 347 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "½": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1215 694 l 1215 347 l 1042 347 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 868 347 l 1042 347 l 1042 174 l 1215 174 l 1215 0 l 868 0 l 868 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "¾": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 l 0 1042 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1215 694 l 1215 0 l 1042 0 l 1042 174 l 694 174 l 694 521 l 868 521 l 868 347 l 1042 347 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "¿": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "×": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "Ø": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 868 1042 l 868 174 l 694 174 l 694 694 l 521 694 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 347 521 l 347 174 l 694 174 l 694 0 l 174 0 l 174 174 l 0 174 l 0 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "Þ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 521 l 694 521 l 694 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "ß": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 -174 l 0 -174 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 347 174 l 694 174 l 694 0 l 347 0 l 347 174 z " + }, + "ð": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 694 868 l 868 868 l 868 174 l 694 174 l 694 347 l 174 347 l 174 521 l 694 521 l 694 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "÷": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 0 694 l 868 694 l 868 521 l 0 521 l 0 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "ø": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 868 694 l 868 174 l 694 174 l 694 521 l 521 521 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 347 347 l 347 174 l 694 174 l 694 0 l 174 0 l 174 174 l 0 174 l 0 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "þ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 347 l 694 347 l 694 174 l 174 174 l 174 -174 l 0 -174 l 0 1215 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 z " + }, + "IJ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 521 l 0 521 l 0 1215 m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ij": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 521 868 l 694 868 l 694 0 l 521 0 l 521 868 m 0 0 l 521 0 l 521 -174 l 0 -174 l 0 0 z " + }, + "ĸ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 174 868 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ſ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 z " + }, + "Ɓ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 1042 1215 l 1042 1042 l 521 1042 l 521 868 l 1042 868 l 1042 694 l 521 694 l 521 174 l 1042 174 l 1042 0 l 347 0 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 1042 m 1042 694 l 1215 694 l 1215 174 l 1042 174 l 1042 694 z " + }, + "Ƅ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 694 l 868 694 l 868 521 l 347 521 l 347 174 l 868 174 l 868 0 l 174 0 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 521 l 1042 521 l 1042 174 l 868 174 l 868 521 z " + }, + "ƅ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 694 l 521 694 l 521 521 l 347 521 l 347 174 l 868 174 l 868 0 l 174 0 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 521 868 l 868 868 l 868 694 l 521 694 l 521 868 m 868 694 l 1042 694 l 1042 174 l 868 174 l 868 694 z " + }, + "Ɔ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ɖ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 868 1215 l 868 1042 l 347 1042 l 347 868 l 521 868 l 521 694 l 347 694 l 347 174 l 868 174 l 868 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 868 1042 l 1042 1042 l 1042 174 l 868 174 l 868 1042 z " + }, + "Ǝ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 0 l 0 0 l 0 174 l 694 174 l 694 347 l 347 347 l 347 521 l 694 521 l 694 1042 l 0 1042 l 0 1215 z " + }, + "Ə": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 174 521 l 174 174 l 0 174 l 0 694 l 694 694 l 694 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ɛ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ƒ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 1042 1215 l 1042 1042 l 347 1042 l 347 868 l 694 868 l 694 694 l 347 694 l 347 0 l 174 0 l 174 1215 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 z " + }, + "ƒ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 694 l 694 694 l 694 521 l 521 521 l 521 0 l 347 0 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 347 0 l 347 -174 l 174 -174 l 174 0 z " + }, + "ƚ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 694 l 521 694 l 521 521 l 347 521 l 347 174 l 174 174 l 174 521 l 0 521 l 0 694 l 174 694 l 174 1215 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ƛ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 347 1215 l 347 1042 l 0 1042 l 0 1215 m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 521 694 l 521 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ƞ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 -174 l 694 -174 l 694 694 z " + }, + "Ɵ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 694 694 l 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 174 521 l 174 174 l 0 174 l 0 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ƨ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 0 1042 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ƨ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 694 521 l 694 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 868 174 l 868 0 l 174 0 l 174 174 z " + }, + "Ʃ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 868 174 l 868 0 l 0 0 l 0 347 z " + }, + "ƪ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 347 1042 l 521 1042 l 521 0 l 347 0 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 521 0 l 868 0 l 868 -174 l 521 -174 l 521 0 z " + }, + "Ʋ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 521 174 l 521 0 l 0 0 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 694 1042 l 868 1042 l 868 347 l 694 347 l 694 1042 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "Ʒ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 0 1042 l 0 1215 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "Ƹ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 0 l 0 0 l 0 694 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ƹ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 174 694 l 174 521 l 0 521 l 0 868 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ƻ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 521 868 l 694 868 l 694 694 l 868 694 l 868 521 l 347 521 l 347 347 l 174 347 l 174 521 l 0 521 l 0 694 l 521 694 l 521 868 m 0 347 l 174 347 l 174 174 l 694 174 l 694 347 l 868 347 l 868 0 l 0 0 l 0 347 z " + }, + "Ƽ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 347 1042 l 347 868 l 694 868 l 694 694 l 174 694 l 174 1042 l 0 1042 l 0 1215 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ƽ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 347 694 l 347 521 l 694 521 l 694 347 l 174 347 l 174 694 l 0 694 l 0 868 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "ƾ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 694 l 347 694 l 347 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "ƿ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 174 l 521 174 l 521 0 l 174 0 l 174 -174 l 0 -174 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "ǀ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 0 l 0 0 l 0 1215 z " + }, + "ǁ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 0 l 0 0 l 0 1215 m 347 1215 l 521 1215 l 521 0 l 347 0 l 347 1215 z " + }, + "ǂ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 868 868 l 868 694 l 521 694 l 521 521 l 868 521 l 868 347 l 521 347 l 521 0 l 347 0 l 347 347 l 0 347 l 0 521 l 347 521 l 347 694 l 0 694 l 0 868 l 347 868 l 347 1215 z " + }, + "ǃ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 347 l 0 347 l 0 1215 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "lj": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 1042 868 l 1215 868 l 1215 0 l 1042 0 l 1042 868 m 521 347 l 694 347 l 694 0 l 521 0 l 521 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 694 0 l 1042 0 l 1042 -174 l 694 -174 l 694 0 z " + }, + "ǝ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 174 347 l 174 174 l 0 174 l 0 521 l 694 521 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ƿ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 347 l 347 347 l 347 174 l 174 174 l 174 -174 l 0 -174 l 0 1215 m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "Ȝ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 521 868 l 694 868 l 694 521 l 347 521 l 347 694 l 521 694 l 521 868 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 0 0 l 521 0 l 521 -174 l 0 -174 l 0 0 z " + }, + "ȝ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 0 0 l 521 0 l 521 -174 l 0 -174 l 0 0 z " + }, + "Ƞ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 -174 l 694 -174 l 694 1042 z " + }, + "ȡ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 694 1215 l 868 1215 l 868 347 l 1042 347 l 1042 174 l 868 174 l 868 0 l 174 0 l 174 174 l 694 174 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1215 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "Ȥ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 0 1042 l 0 1215 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 868 174 l 868 -174 l 694 -174 l 694 0 l 0 0 l 0 347 z " + }, + "ȥ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 694 694 l 694 521 l 521 521 l 521 694 l 0 694 l 0 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 868 174 l 868 -174 l 694 -174 l 694 0 l 0 0 l 0 174 l 174 174 l 174 347 z " + }, + "ȴ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 1215 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 m 174 0 l 347 0 l 347 -174 l 174 -174 l 174 0 z " + }, + "ȵ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 347 l 1042 347 l 1042 174 l 868 174 l 868 0 l 694 0 l 694 694 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "ȶ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 694 l 347 694 l 347 521 l 521 521 l 521 347 l 347 347 l 347 174 l 174 174 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "Ⱥ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 868 1042 l 868 0 l 694 0 l 694 694 l 521 694 l 521 521 l 347 521 l 347 694 l 174 694 l 174 521 l 347 521 l 347 174 l 174 174 l 174 0 l 0 0 l 0 1042 l 174 1042 l 174 868 l 521 868 l 521 1042 l 174 1042 l 174 1215 z " + }, + "Ȼ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 347 521 l 347 347 l 174 347 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ȼ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 868 694 l 868 521 l 521 521 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 347 347 l 347 174 l 694 174 l 694 0 l 174 0 l 174 174 l 0 174 l 0 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "Ƚ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 694 l 521 694 l 521 521 l 347 521 l 347 174 l 1042 174 l 1042 0 l 174 0 l 174 521 l 0 521 l 0 694 l 174 694 l 174 1215 z " + }, + "Ⱦ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 521 694 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 1042 l 0 1042 l 0 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "Ɂ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 521 l 694 521 l 694 1042 m 347 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 521 z " + }, + "ɂ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 347 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 347 z " + }, + "Ƀ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 868 1215 l 868 1042 l 347 1042 l 347 868 l 868 868 l 868 694 l 347 694 l 347 521 l 694 521 l 694 347 l 347 347 l 347 174 l 868 174 l 868 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 1215 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 868 694 l 1042 694 l 1042 174 l 868 174 l 868 694 z " + }, + "Ʉ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 868 l 868 868 l 868 1215 l 1042 1215 l 1042 868 l 1215 868 l 1215 694 l 1042 694 l 1042 174 l 868 174 l 868 694 l 347 694 l 347 174 l 174 174 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "Ʌ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 0 694 l 174 694 l 174 0 l 0 0 l 0 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "Ɇ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 521 694 l 521 521 l 347 521 l 347 694 l 174 694 l 174 521 l 347 521 l 347 347 l 174 347 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1215 z " + }, + "ɇ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 868 l 868 868 l 868 694 l 1042 694 l 1042 347 l 521 347 l 521 174 l 1042 174 l 1042 0 l 347 0 l 347 174 l 174 174 l 174 694 l 347 694 l 347 521 l 694 521 l 694 694 l 347 694 l 347 868 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "Ɉ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 868 1215 l 868 868 l 1042 868 l 1042 694 l 868 694 l 868 174 l 694 174 l 694 694 l 521 694 l 521 868 l 694 868 l 694 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ɉ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 694 868 l 868 868 l 868 694 l 1042 694 l 1042 521 l 868 521 l 868 0 l 694 0 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "Ɋ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 868 1215 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "ɋ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "Ɍ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 868 1215 l 868 1042 l 347 1042 l 347 868 l 868 868 l 868 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 868 694 l 1042 694 l 1042 0 l 868 0 l 868 694 z " + }, + "ɍ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 347 868 l 347 694 l 521 694 l 521 521 l 347 521 l 347 347 l 521 347 l 521 174 l 347 174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 347 l 174 347 l 174 868 m 521 868 l 868 868 l 868 694 l 521 694 l 521 868 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 z " + }, + "Ɏ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 1042 l 868 1042 l 868 1215 l 1042 1215 l 1042 1042 l 1215 1042 l 1215 868 l 868 868 l 868 694 l 694 694 l 694 868 l 521 868 l 521 694 l 347 694 l 347 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 521 694 l 694 694 l 694 0 l 521 0 l 521 694 z " + }, + "ɏ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 868 l 347 868 l 347 694 l 868 694 l 868 868 l 1042 868 l 1042 694 l 1215 694 l 1215 521 l 1042 521 l 1042 0 l 868 0 l 868 174 l 347 174 l 347 347 l 868 347 l 868 521 l 347 521 l 347 347 l 174 347 l 174 521 l 0 521 l 0 694 l 174 694 l 174 868 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "ɐ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 521 l 694 521 l 694 347 l 174 347 l 174 174 l 0 174 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ɑ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 0 l 174 0 l 174 174 l 694 174 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 z " + }, + "ɒ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 347 174 l 694 174 l 694 0 l 347 0 l 347 174 z " + }, + "ɓ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 347 694 l 347 521 l 174 521 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "ɔ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ɕ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 347 174 l 347 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "ɖ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 868 1215 l 868 0 l 174 0 l 174 174 l 694 174 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1215 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "ɗ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 0 l 174 0 l 174 174 l 694 174 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1042 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 z " + }, + "ɘ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 694 521 l 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 0 347 l 0 694 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "ə": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 174 347 l 174 174 l 0 174 l 0 521 l 694 521 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ɚ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 1042 694 l 1042 521 l 868 521 l 868 174 l 694 174 l 694 347 l 174 347 l 174 174 l 0 174 l 0 521 l 694 521 l 694 694 m 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ɛ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 868 174 l 868 0 l 174 0 l 174 174 z " + }, + "ɜ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "ɝ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 1042 694 l 1042 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "ɞ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ɟ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1042 l 521 1042 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 0 174 l 0 347 l 347 347 l 347 1042 m 0 0 l 347 0 l 347 -174 l 0 -174 l 0 0 z " + }, + "ɠ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 694 l 174 694 l 174 868 l 694 868 l 694 1042 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 0 0 l 694 0 l 694 -174 l 0 -174 l 0 0 z " + }, + "ɡ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 0 0 l 694 0 l 694 -174 l 0 -174 l 0 0 z " + }, + "ɢ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 521 521 l 868 521 l 868 174 l 694 174 l 694 347 l 521 347 l 521 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ɤ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 0 694 l 0 868 m 521 868 l 868 868 l 868 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ɥ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 174 1042 l 174 347 l 0 347 l 0 1042 m 694 1042 l 868 1042 l 868 -174 l 694 -174 l 694 347 l 521 347 l 521 521 l 694 521 l 694 1042 m 174 347 l 521 347 l 521 174 l 174 174 l 174 347 z " + }, + "ɦ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ɧ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 m 347 0 l 694 0 l 694 -174 l 347 -174 l 347 0 z " + }, + "ɨ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 174 868 l 347 868 l 347 521 l 521 521 l 521 347 l 347 347 l 347 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 868 z " + }, + "ɪ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 521 868 l 521 694 l 347 694 l 347 174 l 521 174 l 521 0 l 0 0 l 0 174 l 174 174 l 174 694 l 0 694 l 0 868 z " + }, + "ɫ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 694 l 694 694 l 694 521 l 521 521 l 521 174 l 347 174 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ɬ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1215 l 521 1215 l 521 521 l 694 521 l 694 347 l 521 347 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ɭ": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 1215 l 174 1215 l 174 0 l 0 0 l 0 1215 m 174 0 l 347 0 l 347 -174 l 174 -174 l 174 0 z " + }, + "ɮ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 868 868 l 868 521 l 694 521 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 347 0 l 694 0 l 694 -174 l 347 -174 l 347 0 z " + }, + "ɯ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 0 l 521 0 l 521 174 l 694 174 l 694 868 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ɰ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 -174 l 694 -174 l 694 0 l 521 0 l 521 174 l 694 174 l 694 868 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ɱ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 347 l 347 347 l 347 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + }, + "ɲ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 868 868 l 868 694 l 347 694 l 347 0 l 174 0 l 174 868 m 868 694 l 1042 694 l 1042 0 l 868 0 l 868 694 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 z " + }, + "ɳ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "ɴ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "ɵ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 694 521 l 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 174 347 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ɷ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 868 l 1042 868 l 1042 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 1042 694 l 1215 694 l 1215 174 l 1042 174 l 1042 694 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 694 174 l 1042 174 l 1042 0 l 694 0 l 694 174 z " + }, + "ɸ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 521 694 l 521 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 347 174 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "ɹ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "ɺ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "ɻ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "ɼ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 -174 l 0 -174 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "ɾ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 0 l 0 0 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "ɿ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 -174 l 694 -174 l 694 694 z " + }, + "ʀ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 521 l 694 521 l 694 347 l 174 347 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ʁ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 694 521 l 694 347 l 174 347 l 174 174 l 694 174 l 694 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "ʄ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 347 l 1042 347 l 1042 174 l 868 174 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 1042 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ʅ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 0 694 l 0 868 m 347 694 l 521 694 l 521 0 l 347 0 l 347 694 m 521 0 l 868 0 l 868 -174 l 521 -174 l 521 0 z " + }, + "ʆ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 1042 1215 l 1042 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 347 l 868 347 l 868 174 l 694 174 l 694 0 l 521 0 l 521 174 l 174 174 l 174 347 l 521 347 l 521 1042 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "ʇ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 347 868 l 347 347 l 521 347 l 521 174 l 347 174 l 347 -174 l 174 -174 l 174 174 l 0 174 l 0 347 l 174 347 l 174 868 z " + }, + "ʈ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 347 0 l 521 0 l 521 -174 l 347 -174 l 347 0 z " + }, + "ʉ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 868 l 347 868 l 347 521 l 868 521 l 868 868 l 1042 868 l 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 0 l 347 0 l 347 174 l 868 174 l 868 347 l 347 347 l 347 174 l 174 174 l 174 347 l 0 347 l 0 521 l 174 521 l 174 868 z " + }, + "ʊ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 521 l 174 521 l 174 694 l 0 694 l 0 868 m 521 868 l 868 868 l 868 694 l 694 694 l 694 521 l 521 521 l 521 868 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ʋ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ʌ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "ʍ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 521 694 l 521 347 l 347 347 l 347 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ʎ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 868 1042 l 868 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 694 694 l 694 521 l 174 521 l 174 0 l 0 0 l 0 868 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "ʏ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 0 l 347 0 l 347 521 z " + }, + "ʑ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 521 694 l 521 521 l 347 521 l 347 694 l 0 694 l 0 868 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 0 347 l 174 347 l 174 174 l 347 174 l 347 347 l 521 347 l 521 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "ʒ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 521 l 694 521 l 694 694 l 0 694 l 0 868 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ʓ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 521 l 694 521 l 694 694 l 0 694 l 0 868 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 521 174 l 521 0 l 694 0 l 694 -174 l 174 -174 l 174 0 l 347 0 l 347 174 z " + }, + "ʔ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 521 l 694 521 l 694 1042 m 347 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 521 z " + }, + "ʕ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 521 l 521 521 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 z " + }, + "ʖ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 347 694 l 347 1215 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ʗ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 0 l 0 0 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ʘ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ʙ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 521 l 694 521 l 694 347 l 174 347 l 174 174 l 694 174 l 694 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "ʚ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ʛ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 174 694 l 174 868 l 694 868 l 694 1042 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 521 521 l 868 521 l 868 174 l 694 174 l 694 347 l 521 347 l 521 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ʜ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 694 521 l 694 868 l 868 868 l 868 0 l 694 0 l 694 347 l 174 347 l 174 0 l 0 0 l 0 868 z " + }, + "ʝ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 521 868 l 694 868 l 694 347 l 868 347 l 868 174 l 694 174 l 694 0 l 521 0 l 521 174 l 174 174 l 174 347 l 521 347 l 521 868 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "ʞ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 -174 l 521 -174 l 521 521 l 347 521 l 347 694 l 521 694 l 521 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "ʟ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 868 174 l 868 0 l 0 0 l 0 868 z " + }, + "ʠ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 -174 l 694 -174 l 694 174 l 174 174 l 174 347 l 694 347 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1042 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 z " + }, + "ʡ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 694 l 694 694 l 694 521 l 521 521 l 521 347 l 868 347 l 868 174 l 521 174 l 521 0 l 347 0 l 347 174 l 0 174 l 0 347 l 347 347 l 347 694 z " + }, + "ʢ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 694 l 521 694 l 521 347 l 868 347 l 868 174 l 521 174 l 521 0 l 347 0 l 347 174 l 0 174 l 0 347 l 347 347 l 347 521 l 174 521 l 174 694 z " + }, + "ʬ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 347 868 l 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 0 694 l 0 1215 m 694 1215 l 868 1215 l 868 868 l 694 868 l 694 1215 m 0 521 l 174 521 l 174 174 l 347 174 l 347 347 l 521 347 l 521 174 l 694 174 l 694 0 l 0 0 l 0 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 z " + }, + "ʻ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 z " + }, + "ˌ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 174 l 174 174 l 174 -174 l 0 -174 l 0 174 z " + }, + "˙": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 z " + }, + ";": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 0 174 l 174 174 l 174 -174 l 0 -174 l 0 174 z " + }, + "·": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 z " + }, + "Α": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 694 868 l 694 1042 l 868 1042 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1042 z " + }, + "Β": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "Γ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 z " + }, + "Δ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 347 868 l 347 1215 m 174 868 l 347 868 l 347 347 l 174 347 l 174 868 m 521 868 l 694 868 l 694 347 l 521 347 l 521 868 m 0 347 l 174 347 l 174 174 l 694 174 l 694 347 l 868 347 l 868 0 l 0 0 l 0 347 z " + }, + "Ε": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 521 868 l 521 694 l 174 694 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1215 z " + }, + "Ζ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 0 1042 l 0 1215 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 868 174 l 868 0 l 0 0 l 0 347 z " + }, + "Η": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 1215 l 868 1215 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 z " + }, + "Θ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ι": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 174 l 521 174 l 521 0 l 0 0 l 0 174 l 174 174 l 174 1042 l 0 1042 l 0 1215 z " + }, + "Κ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "Λ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 347 868 l 347 1215 m 174 868 l 347 868 l 347 347 l 174 347 l 174 868 m 521 868 l 694 868 l 694 347 l 521 347 l 521 868 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "Μ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "Ν": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "Ξ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 0 1042 l 0 1215 m 174 694 l 694 694 l 694 521 l 174 521 l 174 694 m 0 174 l 868 174 l 868 0 l 0 0 l 0 174 z " + }, + "Ο": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Π": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 0 l 694 0 l 694 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 z " + }, + "Ρ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "Σ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 868 174 l 868 0 l 0 0 l 0 347 z " + }, + "Τ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 0 l 347 0 l 347 1042 l 0 1042 l 0 1215 z " + }, + "Υ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 0 l 347 0 l 347 868 z " + }, + "Φ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 868 l 521 868 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 z " + }, + "Χ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "Ψ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 0 l 347 0 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 694 1215 l 868 1215 l 868 868 l 694 868 l 694 1215 z " + }, + "Ω": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 347 l 0 347 l 0 1042 m 694 1042 l 868 1042 l 868 347 l 694 347 l 694 1042 m 174 347 l 347 347 l 347 0 l 0 0 l 0 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 868 174 l 868 0 l 521 0 l 521 347 z " + }, + "α": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 521 694 l 694 694 l 694 174 l 521 174 l 521 694 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "β": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 694 174 l 694 0 l 174 0 l 174 -174 l 0 -174 l 0 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 z " + }, + "γ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 0 l 174 0 l 174 347 m 521 347 l 694 347 l 694 0 l 521 0 l 521 347 m 347 0 l 521 0 l 521 -174 l 347 -174 l 347 0 z " + }, + "δ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ε": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 868 174 l 868 0 l 174 0 l 174 174 z " + }, + "ζ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 0 1042 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 347 347 l 694 347 l 694 174 l 347 174 l 347 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + }, + "η": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 -174 l 694 -174 l 694 694 z " + }, + "θ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 694 694 l 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 174 521 l 174 174 l 0 174 l 0 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ι": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "κ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 174 868 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "λ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 347 1215 l 347 1042 l 0 1042 l 0 1215 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 m 174 694 l 347 694 l 347 347 l 174 347 l 174 694 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "μ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 694 174 l 694 0 l 174 0 l 174 -174 l 0 -174 l 0 868 m 694 868 l 868 868 l 868 174 l 694 174 l 694 868 z " + }, + "ν": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ξ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 694 1042 l 694 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 174 694 l 694 694 l 694 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 174 347 l 694 347 l 694 174 l 174 174 l 174 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + }, + "ο": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "π": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 694 694 l 694 0 l 521 0 l 521 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 z " + }, + "ρ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 694 347 l 694 174 l 174 174 l 174 -174 l 0 -174 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 z " + }, + "ς": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 347 l 694 347 l 694 174 l 174 174 l 174 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + }, + "σ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 1042 868 l 1042 694 l 868 694 l 868 174 l 694 174 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "τ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 521 694 l 521 174 l 347 174 l 347 694 l 0 694 l 0 868 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "υ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "φ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 347 694 l 521 694 l 521 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 347 174 l 347 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "χ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 0 174 l 174 174 l 174 -174 l 0 -174 l 0 174 m 694 174 l 868 174 l 868 -174 l 694 -174 l 694 174 z " + }, + "ψ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 347 868 l 521 868 l 521 347 l 694 347 l 694 174 l 521 174 l 521 -174 l 347 -174 l 347 174 l 174 174 l 174 347 l 347 347 l 347 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 z " + }, + "ω": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 1042 694 l 1215 694 l 1215 174 l 1042 174 l 1042 694 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 694 174 l 1042 174 l 1042 0 l 694 0 l 694 174 z " + }, + "ϛ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 521 l 868 521 l 868 0 l 0 0 l 0 174 l 694 174 l 694 347 l 174 347 l 174 521 z " + }, + "Ђ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 694 l 694 694 l 694 521 l 521 521 l 521 0 l 347 0 l 347 1042 l 0 1042 l 0 1215 m 694 868 l 1042 868 l 1042 694 l 694 694 l 694 868 m 1042 694 l 1215 694 l 1215 174 l 1042 174 l 1042 694 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 z " + }, + "Є": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 521 694 l 521 521 l 174 521 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ѕ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "І": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 174 l 521 174 l 521 0 l 0 0 l 0 174 l 174 174 l 174 1042 l 0 1042 l 0 1215 z " + }, + "Ј": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Љ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 694 1215 l 694 868 l 1042 868 l 1042 694 l 694 694 l 694 174 l 1042 174 l 1042 0 l 521 0 l 521 1042 l 347 1042 l 347 174 l 174 174 l 174 1215 m 1042 694 l 1215 694 l 1215 174 l 1042 174 l 1042 694 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "Њ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 868 l 347 868 l 347 1215 l 521 1215 l 521 868 l 868 868 l 868 694 l 521 694 l 521 174 l 868 174 l 868 0 l 347 0 l 347 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 868 694 l 1042 694 l 1042 174 l 868 174 l 868 694 z " + }, + "Ћ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 1042 l 868 1042 l 868 868 l 347 868 l 347 521 l 521 521 l 521 347 l 347 347 l 347 0 l 174 0 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 521 694 l 868 694 l 868 521 l 521 521 l 521 694 m 868 521 l 1042 521 l 1042 0 l 868 0 l 868 521 z " + }, + "А": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 694 868 l 694 1042 l 868 1042 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1042 z " + }, + "Б": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "В": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "Г": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 z " + }, + "Д": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 1215 l 868 1215 l 868 174 l 1042 174 l 1042 -174 l 868 -174 l 868 0 l 174 0 l 174 -174 l 0 -174 l 0 174 l 174 174 l 174 694 l 347 694 l 347 174 l 694 174 l 694 1042 l 521 1042 l 521 694 l 347 694 l 347 1215 z " + }, + "Е": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 521 868 l 521 694 l 174 694 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1215 z " + }, + "Ж": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 521 1215 l 694 1215 l 694 868 l 868 868 l 868 694 l 694 694 l 694 0 l 521 0 l 521 694 l 347 694 l 347 868 l 521 868 l 521 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 1042 521 l 1215 521 l 1215 0 l 1042 0 l 1042 521 z " + }, + "З": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "И": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "К": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "Л": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 0 l 694 0 l 694 1042 l 347 1042 l 347 174 l 174 174 l 174 1215 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "М": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "Н": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 1215 l 868 1215 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 z " + }, + "О": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "П": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 0 l 694 0 l 694 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 z " + }, + "Р": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "С": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Т": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 0 l 347 0 l 347 1042 l 0 1042 l 0 1215 z " + }, + "У": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1215 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "Ф": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 1042 1042 l 1042 868 l 694 868 l 694 174 l 1042 174 l 1042 0 l 694 0 l 694 -174 l 521 -174 l 521 0 l 174 0 l 174 174 l 521 174 l 521 868 l 174 868 l 174 1042 l 521 1042 l 521 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 1042 868 l 1215 868 l 1215 174 l 1042 174 l 1042 868 z " + }, + "Х": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "Ц": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 174 l 694 174 l 694 1215 l 868 1215 l 868 174 l 1042 174 l 1042 -174 l 868 -174 l 868 0 l 0 0 l 0 1215 z " + }, + "Ч": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1215 z " + }, + "Ш": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 174 l 521 174 l 521 1215 l 694 1215 l 694 174 l 1042 174 l 1042 1215 l 1215 1215 l 1215 0 l 0 0 l 0 1215 z " + }, + "Щ": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 174 1215 l 174 174 l 521 174 l 521 1215 l 694 1215 l 694 174 l 1042 174 l 1042 1215 l 1215 1215 l 1215 174 l 1389 174 l 1389 -174 l 1215 -174 l 1215 0 l 0 0 l 0 1215 z " + }, + "Ъ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 347 1215 l 347 694 l 868 694 l 868 521 l 347 521 l 347 174 l 868 174 l 868 0 l 174 0 l 174 1042 l 0 1042 l 0 1215 m 868 521 l 1042 521 l 1042 174 l 868 174 l 868 521 z " + }, + "Ы": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 694 l 694 694 l 694 521 l 174 521 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 m 1042 1215 l 1215 1215 l 1215 0 l 1042 0 l 1042 1215 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 z " + }, + "Ь": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 694 694 l 694 521 l 174 521 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 z " + }, + "Э": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 347 521 l 347 694 l 694 694 l 694 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ю": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 1042 l 521 1042 l 521 174 l 347 174 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 521 1215 l 1042 1215 l 1042 1042 l 521 1042 l 521 1215 m 1042 1042 l 1215 1042 l 1215 174 l 1042 174 l 1042 1042 m 521 174 l 1042 174 l 1042 0 l 521 0 l 521 174 z " + }, + "Я": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 0 l 694 0 l 694 694 l 174 694 l 174 868 l 694 868 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 0 694 l 174 694 l 174 0 l 0 0 l 0 694 z " + }, + "а": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 694 694 l 868 694 l 868 0 l 174 0 l 174 174 l 694 174 l 694 347 l 174 347 l 174 521 l 694 521 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "б": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 0 174 l 0 1042 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "в": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 521 l 694 521 l 694 347 l 174 347 l 174 174 l 694 174 l 694 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "г": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 z " + }, + "д": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 868 l 868 868 l 868 174 l 1042 174 l 1042 -174 l 868 -174 l 868 0 l 174 0 l 174 -174 l 0 -174 l 0 174 l 174 174 l 174 521 l 347 521 l 347 174 l 694 174 l 694 694 l 521 694 l 521 521 l 347 521 l 347 868 z " + }, + "е": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 694 521 l 694 694 l 868 694 l 868 347 l 174 347 l 174 174 l 0 174 l 0 694 m 174 174 l 868 174 l 868 0 l 174 0 l 174 174 z " + }, + "ж": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 347 868 l 521 868 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "з": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "и": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "к": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 174 868 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "л": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 0 l 694 0 l 694 694 l 347 694 l 347 174 l 174 174 l 174 868 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "м": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "н": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 694 521 l 694 868 l 868 868 l 868 0 l 694 0 l 694 347 l 174 347 l 174 0 l 0 0 l 0 868 z " + }, + "о": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "п": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 z " + }, + "р": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 347 l 694 347 l 694 174 l 174 174 l 174 -174 l 0 -174 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 z " + }, + "с": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "т": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 521 694 l 521 0 l 347 0 l 347 694 l 0 694 l 0 868 z " + }, + "у": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 868 m 0 0 l 694 0 l 694 -174 l 0 -174 l 0 0 z " + }, + "ф": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 521 694 l 521 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 347 174 l 347 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "х": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ц": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 521 174 l 521 868 l 694 868 l 694 174 l 868 174 l 868 -174 l 694 -174 l 694 0 l 0 0 l 0 868 z " + }, + "ч": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 347 l 174 347 l 174 521 l 694 521 l 694 868 z " + }, + "ш": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 347 174 l 347 868 l 521 868 l 521 174 l 694 174 l 694 868 l 868 868 l 868 0 l 0 0 l 0 868 z " + }, + "щ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 174 868 l 174 174 l 347 174 l 347 868 l 521 868 l 521 174 l 694 174 l 694 868 l 868 868 l 868 174 l 1042 174 l 1042 -174 l 868 -174 l 868 0 l 0 0 l 0 868 z " + }, + "ъ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 347 868 l 347 521 l 868 521 l 868 347 l 347 347 l 347 174 l 868 174 l 868 0 l 174 0 l 174 694 l 0 694 l 0 868 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 z " + }, + "ы": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 174 868 l 174 521 l 521 521 l 521 347 l 174 347 l 174 174 l 521 174 l 521 0 l 0 0 l 0 868 m 868 868 l 1042 868 l 1042 0 l 868 0 l 868 868 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "ь": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 694 521 l 694 347 l 174 347 l 174 174 l 694 174 l 694 0 l 0 0 l 0 868 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "э": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 347 347 l 347 521 l 694 521 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ю": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 174 868 l 174 521 l 347 521 l 347 694 l 521 694 l 521 174 l 347 174 l 347 347 l 174 347 l 174 0 l 0 0 l 0 868 m 521 868 l 1042 868 l 1042 694 l 521 694 l 521 868 m 1042 694 l 1215 694 l 1215 174 l 1042 174 l 1042 694 m 521 174 l 1042 174 l 1042 0 l 521 0 l 521 174 z " + }, + "я": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 0 l 694 0 l 694 347 l 174 347 l 174 521 l 694 521 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 z " + }, + "є": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 521 521 l 521 347 l 174 347 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ѕ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 694 521 l 694 347 l 174 347 l 174 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "і": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 0 868 l 174 868 l 174 0 l 0 0 l 0 868 z " + }, + "ј": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 694 868 l 868 868 l 868 0 l 694 0 l 694 868 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "љ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 868 l 694 868 l 694 521 l 1042 521 l 1042 347 l 694 347 l 694 174 l 1042 174 l 1042 0 l 521 0 l 521 694 l 347 694 l 347 174 l 174 174 l 174 868 m 1042 347 l 1215 347 l 1215 174 l 1042 174 l 1042 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "њ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 174 868 l 174 521 l 347 521 l 347 868 l 521 868 l 521 521 l 868 521 l 868 347 l 521 347 l 521 174 l 868 174 l 868 0 l 347 0 l 347 347 l 174 347 l 174 0 l 0 0 l 0 868 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 z " + }, + "Ѣ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 1042 l 521 1042 l 521 868 l 347 868 l 347 694 l 868 694 l 868 521 l 347 521 l 347 174 l 868 174 l 868 0 l 174 0 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 521 l 1042 521 l 1042 174 l 868 174 l 868 521 z " + }, + "ѣ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1042 l 347 1042 l 347 868 l 521 868 l 521 694 l 347 694 l 347 521 l 868 521 l 868 347 l 347 347 l 347 174 l 868 174 l 868 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 z " + }, + "Ѳ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 694 694 l 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 174 521 l 174 174 l 0 174 l 0 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ѳ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 694 521 l 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 174 347 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ѵ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 521 l 0 521 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 521 l 694 521 l 694 1042 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ѵ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "Ғ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 1042 1215 l 1042 1042 l 347 1042 l 347 868 l 521 868 l 521 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 z " + }, + "ғ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 347 694 l 347 521 l 521 521 l 521 347 l 347 347 l 347 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 868 z " + }, + "Җ": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 521 1215 l 694 1215 l 694 868 l 868 868 l 868 694 l 694 694 l 694 0 l 521 0 l 521 694 l 347 694 l 347 868 l 521 868 l 521 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 1042 521 l 1215 521 l 1215 174 l 1389 174 l 1389 -174 l 1215 -174 l 1215 0 l 1042 0 l 1042 521 z " + }, + "җ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 347 868 l 521 868 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 174 l 1042 174 l 1042 -174 l 868 -174 l 868 0 l 694 0 l 694 347 z " + }, + "Қ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 694 521 l 868 521 l 868 174 l 1042 174 l 1042 -174 l 868 -174 l 868 0 l 694 0 l 694 521 z " + }, + "қ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 868 174 l 868 -174 l 694 -174 l 694 0 l 521 0 l 521 174 z " + }, + "Ң": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 1215 l 868 1215 l 868 174 l 1042 174 l 1042 -174 l 868 -174 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 z " + }, + "ң": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 174 868 l 174 521 l 694 521 l 694 868 l 868 868 l 868 174 l 1042 174 l 1042 -174 l 868 -174 l 868 0 l 694 0 l 694 347 l 174 347 l 174 0 l 0 0 l 0 868 z " + }, + "Ү": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 0 l 347 0 l 347 868 z " + }, + "ү": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 -174 l 347 -174 l 347 347 z " + }, + "Ұ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 694 694 l 694 521 l 521 521 l 521 0 l 347 0 l 347 521 l 174 521 l 174 694 l 347 694 l 347 868 z " + }, + "ұ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 347 174 l 347 347 z " + }, + "Һ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "һ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "Ӏ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 174 l 521 174 l 521 0 l 0 0 l 0 174 l 174 174 l 174 1042 l 0 1042 l 0 1215 z " + }, + "Ә": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 174 521 l 174 174 l 0 174 l 0 694 l 694 694 l 694 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ә": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 174 347 l 174 174 l 0 174 l 0 521 l 694 521 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ө": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 694 694 l 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 174 521 l 174 174 l 0 174 l 0 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ө": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 694 521 l 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 174 347 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ԁ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 0 l 174 0 l 174 174 l 694 174 l 694 347 l 174 347 l 174 521 l 694 521 l 694 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "Ա": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 694 1215 l 868 1215 l 868 347 l 694 347 l 694 1215 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "Բ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 868 521 l 868 347 l 174 347 l 174 0 l 0 0 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 z " + }, + "Գ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 694 1042 l 868 1042 l 868 521 l 1042 521 l 1042 347 l 868 347 l 868 0 l 694 0 l 694 347 l 174 347 l 174 521 l 694 521 l 694 1042 z " + }, + "Դ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 694 1042 l 868 1042 l 868 521 l 1042 521 l 1042 347 l 868 347 l 868 0 l 694 0 l 694 1042 z " + }, + "Ե": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 868 868 l 868 694 l 174 694 l 174 174 l 0 174 l 0 1215 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Զ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 347 l 694 347 l 694 1042 m 0 347 l 174 347 l 174 174 l 521 174 l 521 347 l 694 347 l 694 174 l 868 174 l 868 0 l 0 0 l 0 347 z " + }, + "Է": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 868 868 l 868 694 l 174 694 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1215 z " + }, + "Ը": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "Թ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 m 868 1042 l 1042 1042 l 1042 174 l 868 174 l 868 521 l 521 521 l 521 694 l 868 694 l 868 1042 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 521 174 l 868 174 l 868 0 l 521 0 l 521 174 z " + }, + "Ժ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 868 1215 l 868 868 l 1042 868 l 1042 694 l 868 694 l 868 174 l 694 174 l 694 694 l 174 694 l 174 868 l 694 868 l 694 1215 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ի": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "Լ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 174 l 694 174 l 694 0 l 0 0 l 0 1215 z " + }, + "Խ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 174 l 347 174 l 347 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 868 868 l 1042 868 l 1042 174 l 868 174 l 868 868 m 521 174 l 868 174 l 868 0 l 521 0 l 521 174 z " + }, + "Ծ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 521 1215 l 868 1215 l 868 1042 l 521 1042 l 521 1215 m 174 1042 l 521 1042 l 521 868 l 347 868 l 347 694 l 174 694 l 174 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Կ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 m 694 1042 l 868 1042 l 868 0 l 694 0 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1042 z " + }, + "Հ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 0 1042 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "Ձ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 521 l 694 521 l 694 1042 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 347 347 l 521 347 l 521 174 l 868 174 l 868 0 l 174 0 l 174 174 l 347 174 l 347 347 z " + }, + "Ղ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 1042 174 l 1042 0 l 694 0 l 694 1042 z " + }, + "Ճ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 694 174 l 694 694 l 868 694 l 868 0 l 0 0 l 0 1042 z " + }, + "Մ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 694 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 174 l 694 174 l 694 1215 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Յ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 0 694 l 694 694 l 694 521 l 0 521 l 0 694 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ն": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 347 1215 l 347 174 l 174 174 l 174 1042 l 0 1042 l 0 1215 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 347 174 l 694 174 l 694 0 l 347 0 l 347 174 z " + }, + "Շ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 l 0 1042 l 0 1215 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ո": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 m 694 1042 l 868 1042 l 868 0 l 694 0 l 694 1042 z " + }, + "Չ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 174 l 0 174 l 0 347 l 347 347 l 347 521 m 521 174 l 868 174 l 868 0 l 521 0 l 521 174 z " + }, + "Պ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 521 1042 l 521 521 l 347 521 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 0 l 694 0 l 694 1042 z " + }, + "Ջ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 347 l 694 347 l 694 1042 m 347 694 l 521 694 l 521 347 l 347 347 l 347 694 m 521 347 l 694 347 l 694 174 l 868 174 l 868 0 l 0 0 l 0 174 l 521 174 l 521 347 z " + }, + "Ռ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 m 694 1042 l 868 1042 l 868 347 l 1042 347 l 1042 174 l 868 174 l 868 0 l 694 0 l 694 1042 z " + }, + "Ս": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 1215 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Վ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 347 l 174 347 l 174 521 l 694 521 l 694 1215 m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 z " + }, + "Տ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 694 l 694 694 l 694 521 l 174 521 l 174 694 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ր": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "Ց": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 174 694 l 694 694 l 694 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ւ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 z " + }, + "Փ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 868 l 521 868 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 z " + }, + "Ք": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 694 694 l 694 521 l 174 521 l 174 347 l 868 347 l 868 174 l 174 174 l 174 0 l 0 0 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 z " + }, + "Օ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ֆ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 174 l 694 174 l 694 0 l 174 0 l 174 174 l 347 174 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "ՙ": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 z " + }, + "՚": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 868 l 174 868 l 174 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 z " + }, + "՛": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 z " + }, + "՜": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1215 l 521 1215 l 521 868 l 174 868 l 174 694 l 0 694 l 0 1042 l 347 1042 l 347 1215 z " + }, + "՝": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 z " + }, + "՞": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 z " + }, + "՟": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 868 1042 l 868 868 l 0 868 l 0 1215 z " + }, + "ՠ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 347 l 347 347 l 347 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ա": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 0 l 521 0 l 521 174 l 694 174 l 694 868 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "բ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 347 l 868 347 l 868 174 l 174 174 l 174 -174 l 0 -174 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "գ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 347 l 1042 347 l 1042 174 l 868 174 l 868 -174 l 694 -174 l 694 174 l 174 174 l 174 347 l 694 347 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 z " + }, + "դ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 174 l 1042 174 l 1042 0 l 868 0 l 868 -174 l 694 -174 l 694 694 z " + }, + "ե": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 694 l 174 694 l 174 174 l 0 174 l 0 1215 m 694 521 l 868 521 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 521 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "զ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 0 l 1042 0 l 1042 -174 l 694 -174 l 694 174 l 174 174 l 174 347 l 694 347 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 z " + }, + "է": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 694 174 l 694 -174 l 521 -174 l 521 0 l 0 0 l 0 1215 z " + }, + "ը": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 868 0 l 868 -174 l 0 -174 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "թ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 -174 l 0 -174 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 347 l 521 347 l 521 521 l 694 521 l 694 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ժ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 868 1215 l 868 868 l 1042 868 l 1042 694 l 868 694 l 868 0 l 174 0 l 174 174 l 694 174 l 694 694 l 174 694 l 174 868 l 694 868 l 694 1215 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 z " + }, + "ի": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 -174 l 0 -174 l 0 1215 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "լ": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 868 l 174 868 l 174 0 l 347 0 l 347 -174 l 0 -174 l 0 868 z " + }, + "խ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 -174 l 0 -174 l 0 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 868 868 l 1042 868 l 1042 0 l 694 0 l 694 174 l 868 174 l 868 868 m 521 694 l 694 694 l 694 174 l 521 174 l 521 694 z " + }, + "ծ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 868 1042 l 868 868 l 521 868 l 521 1042 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "կ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 347 l 0 347 l 0 1215 m 694 1042 l 868 1042 l 868 -174 l 694 -174 l 694 347 l 521 347 l 521 521 l 694 521 l 694 1042 m 174 347 l 521 347 l 521 174 l 174 174 l 174 347 z " + }, + "հ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ձ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 868 1042 l 868 694 l 694 694 l 694 868 l 174 868 l 174 1042 m 174 694 l 694 694 l 694 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 521 l 868 521 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 521 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "ղ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 0 l 1042 0 l 1042 -174 l 694 -174 l 694 694 z " + }, + "ճ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 0 174 l 0 1042 m 694 694 l 868 694 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 694 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "մ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 0 l 174 0 l 174 174 l 694 174 l 694 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 z " + }, + "յ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 868 l 868 868 l 868 0 l 694 0 l 694 868 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ն": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 347 1215 l 347 174 l 174 174 l 174 1042 l 0 1042 l 0 1215 m 868 868 l 1042 868 l 1042 0 l 347 0 l 347 174 l 868 174 l 868 868 z " + }, + "շ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 347 l 694 347 l 694 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 868 0 l 868 -174 l 0 -174 l 0 174 z " + }, + "ո": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "չ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 174 694 l 868 694 l 868 347 l 694 347 l 694 521 l 174 521 l 174 694 m 174 347 l 694 347 l 694 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 868 0 l 868 -174 l 0 -174 l 0 174 z " + }, + "պ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 -174 l 694 -174 l 694 0 l 521 0 l 521 174 l 694 174 l 694 868 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ջ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 347 l 694 347 l 694 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 868 0 l 868 -174 l 0 -174 l 0 174 z " + }, + "ռ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 521 347 l 694 347 l 694 174 l 868 174 l 868 0 l 521 0 l 521 347 z " + }, + "ս": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 0 l 174 0 l 174 174 l 694 174 l 694 868 z " + }, + "վ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 868 1215 l 868 0 l 1042 0 l 1042 -174 l 694 -174 l 694 0 l 174 0 l 174 174 l 694 174 l 694 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 z " + }, + "տ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 521 868 l 1042 868 l 1042 694 l 694 694 l 694 0 l 174 0 l 174 174 l 521 174 l 521 868 m 1042 694 l 1215 694 l 1215 0 l 1042 0 l 1042 694 z " + }, + "ր": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 -174 l 0 -174 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ց": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 0 0 l 694 0 l 694 -174 l 0 -174 l 0 0 z " + }, + "ւ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 174 868 l 174 174 l 694 174 l 694 0 l 0 0 l 0 868 z " + }, + "փ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 868 l 1042 868 l 1042 694 l 694 694 l 694 -174 l 521 -174 l 521 0 l 174 0 l 174 174 l 521 174 l 521 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 1042 694 l 1215 694 l 1215 0 l 1042 0 l 1042 694 z " + }, + "ք": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 347 868 l 347 694 l 521 694 l 521 521 l 868 521 l 868 347 l 347 347 l 347 174 l 1042 174 l 1042 0 l 347 0 l 347 -174 l 174 -174 l 174 0 l 0 0 l 0 174 l 174 174 l 174 868 m 521 868 l 868 868 l 868 694 l 521 694 l 521 868 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 z " + }, + "օ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ֆ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 347 174 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "և": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 521 694 l 694 694 l 694 174 l 1042 174 l 1042 0 l 521 0 l 521 174 l 347 174 l 347 347 l 521 347 l 521 694 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ֈ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 868 l 868 868 l 868 521 l 1042 521 l 1042 347 l 868 347 l 868 0 l 694 0 l 694 347 l 347 347 l 347 521 l 694 521 l 694 868 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "֊": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 174 694 l 868 694 l 868 521 l 174 521 l 174 694 z " + }, + "֏": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 694 l 868 694 l 868 521 l 694 521 l 694 347 l 868 347 l 868 174 l 694 174 l 694 0 l 521 0 l 521 174 l 174 174 l 174 347 l 521 347 l 521 521 l 174 521 l 174 694 l 521 694 l 521 1042 z " + }, + "־": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 0 694 l 0 868 z " + }, + "׃": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "׆": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 521 174 l 521 0 l 0 0 l 0 694 z " + }, + "א": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 174 694 l 347 694 l 347 521 l 694 521 l 694 174 l 521 174 l 521 347 l 174 347 l 174 694 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ב": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 521 868 l 521 694 l 0 694 l 0 868 m 521 694 l 694 694 l 694 174 l 868 174 l 868 0 l 0 0 l 0 174 l 521 174 l 521 694 z " + }, + "ג": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 347 868 l 347 694 l 0 694 l 0 868 m 347 694 l 521 694 l 521 347 l 347 347 l 347 694 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 0 l 521 0 l 521 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "ד": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 694 694 l 694 0 l 521 0 l 521 694 l 0 694 l 0 868 z " + }, + "ה": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 0 l 694 0 l 694 694 l 0 694 l 0 868 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 z " + }, + "ו": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 0 l 0 0 l 0 868 z " + }, + "ז": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 521 868 l 521 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 z " + }, + "ח": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ט": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "י": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 z " + }, + "ך": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 -174 l 694 -174 l 694 694 l 0 694 l 0 868 z " + }, + "כ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "ל": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 174 1042 l 174 868 l 868 868 l 868 347 l 694 347 l 694 694 l 0 694 l 0 1042 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ם": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 174 l 694 174 l 694 694 l 868 694 l 868 0 l 0 0 l 0 868 z " + }, + "מ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 694 694 l 868 694 l 868 0 l 521 0 l 521 174 l 694 174 l 694 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 z " + }, + "ן": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 -174 l 0 -174 l 0 868 z " + }, + "נ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 347 868 l 347 694 l 0 694 l 0 868 m 347 694 l 521 694 l 521 0 l 0 0 l 0 174 l 347 174 l 347 694 z " + }, + "ס": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ע": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 347 l 174 347 l 174 868 m 694 868 l 868 868 l 868 174 l 694 174 l 694 868 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 0 0 l 521 0 l 521 -174 l 0 -174 l 0 0 z " + }, + "ף": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 521 l 347 521 l 347 347 l 0 347 l 0 868 m 694 694 l 868 694 l 868 -174 l 694 -174 l 694 694 z " + }, + "פ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 521 l 521 521 l 521 347 l 0 347 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "ץ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 174 694 l 347 694 l 347 347 l 174 347 l 174 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 -174 l 347 -174 l 347 347 z " + }, + "צ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 0 l 0 0 l 0 174 l 694 174 l 694 347 z " + }, + "ק": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 521 l 694 521 l 694 694 l 0 694 l 0 868 m 0 521 l 174 521 l 174 -174 l 0 -174 l 0 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 0 l 347 0 l 347 347 z " + }, + "ר": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ש": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 347 521 l 347 347 l 174 347 l 174 174 l 0 174 l 0 868 m 347 868 l 521 868 l 521 521 l 347 521 l 347 868 m 694 868 l 868 868 l 868 0 l 174 0 l 174 174 l 694 174 l 694 868 z " + }, + "ת": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 347 694 l 347 0 l 0 0 l 0 174 l 174 174 l 174 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "װ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 174 868 l 174 0 l 0 0 l 0 868 m 347 868 l 521 868 l 521 0 l 347 0 l 347 868 z " + }, + "ױ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 347 868 l 521 868 l 521 0 l 347 0 l 347 868 z " + }, + "ײ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 347 868 l 521 868 l 521 521 l 347 521 l 347 868 z " + }, + "׳": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 868 l 347 868 l 347 521 l 174 521 l 174 868 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 z " + }, + "״": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 868 l 347 868 l 347 521 l 174 521 l 174 868 m 521 868 l 694 868 l 694 521 l 521 521 l 521 868 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "߈": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 868 868 l 868 521 l 694 521 l 694 694 l 174 694 l 174 174 l 347 174 l 347 0 l 0 0 l 0 1215 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "Ⴀ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 l 0 1042 l 0 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴁ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 694 1215 l 868 1215 l 868 174 l 1215 174 l 1215 0 l 694 0 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 z " + }, + "Ⴂ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 868 1215 l 868 174 l 1215 174 l 1215 0 l 694 0 l 694 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 z " + }, + "Ⴃ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 174 694 l 174 868 l 347 868 l 347 1042 l 0 1042 l 0 1215 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴄ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 0 l 694 0 l 694 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 z " + }, + "Ⴅ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 868 1215 l 868 868 l 1215 868 l 1215 521 l 1042 521 l 1042 694 l 868 694 l 868 0 l 694 0 l 694 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 z " + }, + "Ⴆ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 694 l 694 694 l 694 521 l 521 521 l 521 174 l 347 174 l 347 1042 l 0 1042 l 0 1215 m 694 868 l 1042 868 l 1042 694 l 694 694 l 694 868 m 1042 694 l 1215 694 l 1215 174 l 1042 174 l 1042 694 m 521 174 l 1042 174 l 1042 0 l 521 0 l 521 174 z " + }, + "Ⴇ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 868 1215 l 868 868 l 1215 868 l 1215 521 l 1042 521 l 1042 694 l 868 694 l 868 0 l 174 0 l 174 174 l 694 174 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 z " + }, + "Ⴈ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 0 l 694 0 l 694 1042 l 0 1042 l 0 1215 z " + }, + "Ⴉ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 694 1042 l 694 868 l 174 868 l 174 347 l 0 347 l 0 1215 m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 868 z " + }, + "Ⴊ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 694 l 694 694 l 694 521 l 521 521 l 521 174 l 347 174 l 347 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 694 868 l 1042 868 l 1042 694 l 694 694 l 694 868 m 1042 694 l 1215 694 l 1215 174 l 1042 174 l 1042 694 m 521 174 l 1042 174 l 1042 0 l 521 0 l 521 174 z " + }, + "Ⴋ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 868 1215 l 868 868 l 1042 868 l 1042 694 l 868 694 l 868 174 l 694 174 l 694 694 l 174 694 l 174 868 l 694 868 l 694 1042 l 0 1042 l 0 1215 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴌ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "Ⴍ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 347 l 694 347 l 694 1042 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 1042 347 l 1215 347 l 1215 174 l 1042 174 l 1042 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 694 174 l 1042 174 l 1042 0 l 694 0 l 694 174 z " + }, + "Ⴎ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 174 l 347 174 l 347 1042 l 0 1042 l 0 1215 m 1042 1215 l 1215 1215 l 1215 174 l 1042 174 l 1042 1215 m 521 174 l 1042 174 l 1042 0 l 521 0 l 521 174 z " + }, + "Ⴏ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 347 1215 l 347 694 l 174 694 l 174 1042 l 0 1042 l 0 1215 m 868 1215 l 1042 1215 l 1042 0 l 868 0 l 868 521 l 347 521 l 347 694 l 868 694 l 868 1215 z " + }, + "Ⴐ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 694 1215 l 868 1215 l 868 868 l 1215 868 l 1215 521 l 1042 521 l 1042 694 l 868 694 l 868 174 l 694 174 l 694 1215 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴑ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴒ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "Ⴓ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 347 l 1042 347 l 1042 174 l 694 174 l 694 1042 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 z " + }, + "Ⴔ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 521 1042 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 694 1042 l 868 1042 l 868 521 l 694 521 l 694 1042 z " + }, + "Ⴕ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 868 868 l 868 521 l 694 521 l 694 694 l 521 694 l 521 0 l 347 0 l 347 694 l 0 694 l 0 1042 l 174 1042 l 174 868 l 347 868 l 347 1215 z " + }, + "Ⴖ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 m 694 1042 l 868 1042 l 868 0 l 694 0 l 694 1042 z " + }, + "Ⴗ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1215 z " + }, + "Ⴘ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴙ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "Ⴚ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 347 l 868 347 l 868 -174 l 694 -174 l 694 0 l 174 0 l 174 174 l 694 174 l 694 347 z " + }, + "Ⴛ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 694 1215 l 868 1215 l 868 868 l 1215 868 l 1215 521 l 1042 521 l 1042 694 l 868 694 l 868 0 l 174 0 l 174 174 l 694 174 l 694 694 l 174 694 l 174 868 l 694 868 l 694 1215 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 z " + }, + "Ⴜ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 521 l 521 521 l 521 174 l 347 174 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "Ⴝ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴞ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 694 694 l 694 521 l 174 521 l 174 174 l 868 174 l 868 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 694 l 694 694 l 694 1215 z " + }, + "Ⴟ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 174 868 l 347 868 l 347 521 l 174 521 l 174 868 m 521 868 l 694 868 l 694 521 l 521 521 l 521 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 0 l 174 0 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 z " + }, + "Ⴠ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 174 l 347 174 l 347 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 1042 521 l 1215 521 l 1215 174 l 1042 174 l 1042 521 m 521 174 l 1042 174 l 1042 0 l 521 0 l 521 174 z " + }, + "Ⴡ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "Ⴢ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 694 1042 l 694 868 l 0 868 l 0 1215 m 694 868 l 868 868 l 868 174 l 694 174 l 694 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴣ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 z " + }, + "Ⴤ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 m 694 1215 l 868 1215 l 868 694 l 694 694 l 694 1215 m 174 694 l 694 694 l 694 521 l 521 521 l 521 0 l 347 0 l 347 521 l 174 521 l 174 694 z " + }, + "Ⴥ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 1042 1215 l 1042 1042 l 694 1042 l 694 868 l 1042 868 l 1042 694 l 694 694 l 694 521 l 1042 521 l 1042 347 l 694 347 l 694 0 l 174 0 l 174 174 l 521 174 l 521 347 l 174 347 l 174 521 l 521 521 l 521 1215 m 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "Ⴧ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 0 1042 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ⴭ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 0 1042 l 0 1215 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 868 174 l 868 0 l 0 0 l 0 347 z " + }, + "ა": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 868 l 521 868 l 521 694 l 694 694 l 694 521 l 347 521 l 347 868 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ბ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 521 1215 l 521 694 l 694 694 l 694 521 l 174 521 l 174 694 l 347 694 l 347 1042 l 0 1042 l 0 1215 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "გ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 521 868 l 521 694 l 0 694 l 0 868 m 521 694 l 694 694 l 694 347 l 174 347 l 174 521 l 521 521 l 521 694 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "დ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 174 347 l 347 347 l 347 174 l 521 174 l 521 0 l 0 0 l 0 174 l 174 174 l 174 347 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + }, + "ე": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ვ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ზ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 347 1042 l 521 1042 l 521 694 l 694 694 l 694 521 l 521 521 l 521 174 l 347 174 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1042 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "თ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 347 694 l 521 694 l 521 174 l 347 174 l 347 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ი": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "კ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ლ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 1042 694 l 1215 694 l 1215 347 l 1042 347 l 1042 694 m 174 347 l 521 347 l 521 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 521 174 l 868 174 l 868 0 l 521 0 l 521 174 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "მ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1042 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ნ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 694 l 347 694 l 347 521 l 174 521 l 174 174 l 0 174 l 0 1215 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ო": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 347 694 l 521 694 l 521 347 l 347 347 l 347 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "პ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 694 1042 l 694 868 l 174 868 l 174 1042 m 694 868 l 868 868 l 868 521 l 694 521 l 694 868 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ჟ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 868 l 868 868 l 868 0 l 694 0 l 694 694 l 521 694 l 521 521 l 347 521 l 347 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "რ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 694 1042 l 694 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 174 l 0 174 l 0 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ს": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ტ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 521 l 521 521 l 521 347 l 347 347 l 347 694 l 521 694 l 521 868 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "უ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ფ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 347 0 l 694 0 l 694 -174 l 347 -174 l 347 0 z " + }, + "ქ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 521 l 347 521 l 347 694 l 694 694 l 694 1215 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ღ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 347 l 347 347 l 347 174 l 521 174 l 521 0 l 0 0 l 0 174 l 174 174 l 174 347 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + }, + "ყ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 0 0 l 694 0 l 694 -174 l 0 -174 l 0 0 z " + }, + "შ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 521 l 347 521 l 347 694 l 694 694 l 694 1042 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 347 174 l 694 174 l 694 0 l 347 0 l 347 174 z " + }, + "ჩ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 521 868 l 521 694 l 174 694 l 174 521 l 694 521 l 694 347 l 174 347 l 174 0 l 0 0 l 0 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ც": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 0 l 0 0 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ძ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1215 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "წ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 0 1042 l 174 1042 l 174 694 l 694 694 l 694 521 l 174 521 l 174 347 l 0 347 l 0 1042 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 174 347 l 347 347 l 347 0 l 174 0 l 174 347 m 521 347 l 694 347 l 694 0 l 521 0 l 521 347 m 347 0 l 521 0 l 521 -174 l 347 -174 l 347 0 z " + }, + "ჭ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 521 1215 l 521 1042 l 0 1042 l 0 1215 m 521 1042 l 694 1042 l 694 868 l 868 868 l 868 694 l 694 694 l 694 521 l 868 521 l 868 347 l 694 347 l 694 174 l 521 174 l 521 347 l 347 347 l 347 521 l 521 521 l 521 694 l 347 694 l 347 868 l 521 868 l 521 1042 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ხ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 694 694 l 694 521 l 174 521 l 174 174 l 0 174 l 0 1215 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ჯ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 347 l 347 347 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 521 347 l 694 347 l 694 0 l 521 0 l 521 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "ჰ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ჱ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 0 1042 l 174 1042 l 174 694 l 347 694 l 347 521 l 174 521 l 174 174 l 0 174 l 0 1042 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 174 174 l 868 174 l 868 0 l 174 0 l 174 174 z " + }, + "ჲ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 m 174 0 l 347 0 l 347 -174 l 174 -174 l 174 0 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + }, + "ჳ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 694 694 l 694 347 l 347 347 l 347 521 l 521 521 l 521 694 l 0 694 l 0 868 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ჴ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ჵ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 868 l 868 868 l 868 694 l 694 694 l 694 521 l 868 521 l 868 347 l 694 347 l 694 0 l 521 0 l 521 347 l 174 347 l 174 521 l 521 521 l 521 694 l 174 694 l 174 868 l 521 868 l 521 1042 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "ჶ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 347 1215 l 347 1042 l 0 1042 l 0 1215 m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 521 694 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 521 0 l 868 0 l 868 -174 l 521 -174 l 521 0 z " + }, + "ჷ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 694 521 l 694 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ჸ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 694 347 l 694 174 l 174 174 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "ჹ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 m 521 0 l 868 0 l 868 -174 l 521 -174 l 521 0 z " + }, + "ჺ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 347 l 347 347 l 347 174 l 694 174 l 694 0 l 0 0 l 0 174 l 174 174 l 174 347 m 694 0 l 868 0 l 868 -174 l 694 -174 l 694 0 z " + }, + "჻": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "ჼ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 521 1215 l 521 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 174 694 l 174 521 l 347 521 l 347 347 l 0 347 l 0 1215 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ჽ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 694 521 l 694 347 l 174 347 l 174 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ჾ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 0 694 l 0 868 m 521 868 l 868 868 l 868 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 174 0 l 694 0 l 694 -174 l 174 -174 l 174 0 z " + }, + "ჿ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ᗡ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 0 l 174 0 l 174 174 l 694 174 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 z " + }, + "ᗺ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 0 l 174 0 l 174 174 l 694 174 l 694 347 l 174 347 l 174 521 l 694 521 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "ᘔ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ᚠ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 868 l 347 868 l 347 694 l 174 694 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᚢ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ᚣ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 347 347 l 521 347 l 521 0 l 347 0 l 347 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ᚤ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ᚥ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 694 l 347 694 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 347 347 l 521 347 l 521 0 l 347 0 l 347 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ᚦ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 694 l 174 694 l 174 521 l 521 521 l 521 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 z " + }, + "ᚧ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 1042 l 521 1042 l 521 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 347 l 521 347 l 521 174 l 174 174 l 174 0 l 0 0 l 0 1215 m 521 868 l 694 868 l 694 347 l 521 347 l 521 868 z " + }, + "ᚨ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᚩ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᚪ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᚫ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 z " + }, + "ᚬ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 694 l 694 694 l 694 521 l 521 521 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ᚭ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 1215 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ᚮ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1215 l 521 1215 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1215 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "ᚯ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "ᚰ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "ᚱ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ᚲ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "ᚳ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ᚴ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 z " + }, + "ᚶ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 521 l 347 521 l 347 0 l 174 0 l 174 521 l 0 521 l 0 868 l 174 868 l 174 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 z " + }, + "ᚷ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ᚸ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ᚹ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᚺ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 521 694 l 521 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 347 l 521 347 l 521 521 l 694 521 l 694 1215 z " + }, + "ᚻ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 694 l 174 694 l 174 521 l 521 521 l 521 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1215 z " + }, + "ᚼ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "ᚽ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 521 l 347 521 l 347 0 l 174 0 l 174 521 l 0 521 l 0 868 l 174 868 l 174 1215 z " + }, + "ᚾ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 694 l 694 694 l 694 521 l 521 521 l 521 0 l 347 0 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 z " + }, + "ᚿ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "ᛀ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 521 l 521 521 l 521 0 l 347 0 l 347 521 l 174 521 l 174 868 l 347 868 l 347 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 z " + }, + "ᛁ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 0 l 0 0 l 0 1215 z " + }, + "ᛂ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 521 l 347 521 l 347 0 l 174 0 l 174 521 l 0 521 l 0 868 l 174 868 l 174 1215 z " + }, + "ᛃ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 868 521 l 1042 521 l 1042 347 l 868 347 l 868 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ᛄ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "ᛅ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 0 l 347 0 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 z " + }, + "ᛆ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1215 l 521 1215 l 521 0 l 347 0 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1215 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 z " + }, + "ᛇ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 521 1042 l 521 0 l 174 0 l 174 174 l 347 174 l 347 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "ᛈ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 347 1215 l 347 1042 l 174 1042 l 174 174 l 347 174 l 347 0 l 0 0 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ᛉ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 694 l 521 694 l 521 0 l 347 0 l 347 694 l 174 694 l 174 1042 l 347 1042 l 347 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 z " + }, + "ᛊ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ᛋ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 521 l 347 521 l 347 347 l 0 347 l 0 1215 m 521 868 l 868 868 l 868 0 l 694 0 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᛌ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 z " + }, + "ᛍ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 521 l 0 521 l 0 868 l 174 868 l 174 1215 z " + }, + "ᛎ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 694 l 694 694 l 694 521 l 521 521 l 521 347 l 347 347 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 z " + }, + "ᛏ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 868 l 521 868 l 521 0 l 347 0 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 z " + }, + "ᛐ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1215 l 521 1215 l 521 0 l 347 0 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 z " + }, + "ᛑ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1215 l 521 1215 l 521 694 l 694 694 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 694 l 347 694 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 z " + }, + "ᛒ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 521 1215 l 521 1042 l 174 1042 l 174 694 l 347 694 l 347 521 l 174 521 l 174 174 l 521 174 l 521 0 l 0 0 l 0 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "ᛓ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 868 l 347 868 l 347 694 l 174 694 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᛔ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 521 1215 l 521 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 521 694 l 521 521 l 174 521 l 174 347 l 347 347 l 347 174 l 521 174 l 521 0 l 0 0 l 0 1215 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 z " + }, + "ᛕ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 868 l 347 868 l 347 694 l 174 694 l 174 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ᛖ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "ᛗ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "ᛘ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 0 l 347 0 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 694 1215 l 868 1215 l 868 868 l 694 868 l 694 1215 z " + }, + "ᛙ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 521 1215 l 521 868 l 347 868 l 347 0 l 174 0 l 174 868 l 0 868 l 0 1215 z " + }, + "ᛚ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 0 l 0 0 l 0 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "ᛛ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 347 1215 l 347 1042 l 521 1042 l 521 868 l 347 868 l 347 694 l 521 694 l 521 347 l 347 347 l 347 0 l 174 0 l 174 347 l 0 347 l 0 694 l 174 694 l 174 1215 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 z " + }, + "ᛜ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "ᛝ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "ᛞ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 694 l 174 694 l 174 521 l 347 521 l 347 174 l 174 174 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 174 l 521 174 l 521 521 l 694 521 l 694 694 l 521 694 l 521 1042 l 694 1042 l 694 1215 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᛟ": { + "ha": 1215, + "x_min": 174, + "x_max": 1042, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 z " + }, + "ᛠ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 868 1215 l 868 1042 l 694 1042 l 694 0 l 521 0 l 521 1042 l 347 1042 l 347 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 z " + }, + "ᛡ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "ᛢ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 868 1215 l 868 1042 l 694 1042 l 694 0 l 347 0 l 347 174 l 521 174 l 521 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "ᛣ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 521 l 694 521 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 521 l 347 521 l 347 1215 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ᛤ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 694 l 521 694 l 521 521 l 694 521 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 521 l 347 521 l 347 694 l 174 694 l 174 1042 l 347 1042 l 347 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ᛥ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "ᛦ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 1215 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ᛧ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 z " + }, + "ᛨ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 868 l 521 868 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 z " + }, + "ᛩ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1215 l 694 1215 l 694 0 l 521 0 l 521 347 l 347 347 l 347 521 l 521 521 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 z " + }, + "ᛪ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 1042 l 521 1042 l 521 868 l 347 868 l 347 521 l 521 521 l 521 347 l 174 347 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 694 868 l 1042 868 l 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 0 l 868 0 l 868 174 l 694 174 l 694 347 l 868 347 l 868 694 l 694 694 l 694 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 z " + }, + "᛫": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 694 l 347 694 l 347 347 l 0 347 l 0 694 z " + }, + "᛬": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "᛭": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 694 l 868 694 l 868 521 l 521 521 l 521 174 l 347 174 l 347 521 l 0 521 l 0 694 l 347 694 l 347 1042 z " + }, + "ᛮ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 521 1042 l 521 0 l 347 0 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 z " + }, + "ᛯ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 694 1215 l 868 1215 l 868 868 l 694 868 l 694 1215 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ᛰ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 868 l 521 868 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 z " + }, + "ᛱ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ᛲ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 347 l 521 347 l 521 521 l 694 521 l 694 1215 m 0 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 z " + }, + "ᛳ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 694 1042 l 694 521 l 868 521 l 868 347 l 694 347 l 694 0 l 521 0 l 521 347 l 347 347 l 347 521 l 521 521 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 1042 868 l 1215 868 l 1215 694 l 1042 694 l 1042 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 z " + }, + "ᛴ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 694 l 521 694 l 521 868 l 694 868 l 694 0 l 521 0 l 521 521 l 174 521 l 174 347 l 0 347 l 0 1215 z " + }, + "ᛵ": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ᛶ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 868 l 174 868 l 174 1215 m 347 868 l 521 868 l 521 694 l 694 694 l 694 521 l 521 521 l 521 347 l 347 347 l 347 521 l 174 521 l 174 694 l 347 694 l 347 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 521 347 l 694 347 l 694 0 l 521 0 l 521 347 z " + }, + "ᛷ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 521 868 l 521 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 z " + }, + "ᛸ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 521 l 694 521 l 694 174 l 521 174 l 521 347 l 347 347 l 347 174 l 174 174 l 174 521 l 347 521 l 347 1215 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ᴀ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 694 521 l 694 694 l 868 694 l 868 0 l 694 0 l 694 347 l 174 347 l 174 0 l 0 0 l 0 694 z " + }, + "ᴄ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ᴅ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 174 l 694 174 l 694 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "ᴇ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 174 694 l 174 521 l 521 521 l 521 347 l 174 347 l 174 174 l 868 174 l 868 0 l 0 0 l 0 868 z " + }, + "ᴉ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 z " + }, + "ᴊ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 868 l 868 868 l 868 174 l 694 174 l 694 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ᴋ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 521 l 521 521 l 521 347 l 174 347 l 174 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ᴍ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "ᴏ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ᴘ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 521 l 694 521 l 694 347 l 174 347 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "ᴚ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 521 l 0 521 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 174 0 l 174 174 l 694 174 l 694 347 l 174 347 l 174 521 l 694 521 l 694 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "ᴛ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 521 694 l 521 0 l 347 0 l 347 694 l 0 694 l 0 868 z " + }, + "ᴜ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 174 l 694 174 l 694 868 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ᴠ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ᴡ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 521 174 l 521 347 l 694 347 l 694 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "ᴢ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 694 694 l 694 521 l 521 521 l 521 694 l 0 694 l 0 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 868 174 l 868 0 l 0 0 l 0 174 l 174 174 l 174 347 z " + }, + "ᵷ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 868 1042 l 868 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 694 694 l 694 521 l 174 521 l 174 174 l 694 174 l 694 0 l 0 0 l 0 868 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 z " + }, + "ᶑ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 0 l 174 0 l 174 174 l 694 174 l 694 521 l 521 521 l 521 694 l 694 694 l 694 1042 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 868 0 l 1042 0 l 1042 -174 l 868 -174 l 868 0 z " + }, + "ẜ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 521 l 521 521 l 521 347 l 347 347 l 347 0 l 174 0 l 174 174 l 0 174 l 0 347 l 174 347 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 z " + }, + "ẝ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 694 868 l 694 694 l 347 694 l 347 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 z " + }, + "ẞ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 347 174 l 694 174 l 694 0 l 347 0 l 347 174 z " + }, + "ẟ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ỽ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ỽ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 521 694 l 694 694 l 694 174 l 521 174 l 521 694 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "Ỿ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 347 521 l 347 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ỿ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 347 868 l 347 521 l 174 521 l 174 868 m 868 868 l 1042 868 l 1042 0 l 868 0 l 868 347 l 347 347 l 347 521 l 868 521 l 868 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 521 174 l 521 0 l 868 0 l 868 -174 l 174 -174 l 174 0 l 347 0 l 347 174 z " + }, + "‐": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 694 l 521 694 l 521 521 l 0 521 l 0 694 z " + }, + "‑": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 694 l 521 694 l 521 521 l 0 521 l 0 694 z " + }, + "–": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 694 l 1042 694 l 1042 521 l 0 521 l 0 694 z " + }, + "—": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 694 l 1389 694 l 1389 521 l 0 521 l 0 694 z " + }, + "‘": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 z " + }, + "’": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 868 l 174 868 l 174 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 z " + }, + "‚": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 347 l 347 347 l 347 0 l 174 0 l 174 347 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 z " + }, + "“": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 z " + }, + "”": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 347 1215 l 347 868 l 174 868 l 174 1215 m 521 1215 l 694 1215 l 694 868 l 521 868 l 521 1215 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 z " + }, + "„": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 347 l 347 347 l 347 0 l 174 0 l 174 347 m 521 347 l 694 347 l 694 0 l 521 0 l 521 347 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 m 347 0 l 521 0 l 521 -174 l 347 -174 l 347 0 z " + }, + "†": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 868 868 l 868 694 l 521 694 l 521 0 l 347 0 l 347 694 l 0 694 l 0 868 l 347 868 l 347 1215 z " + }, + "‡": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 868 868 l 868 694 l 521 694 l 521 521 l 868 521 l 868 347 l 521 347 l 521 0 l 347 0 l 347 347 l 0 347 l 0 521 l 347 521 l 347 694 l 0 694 l 0 868 l 347 868 l 347 1215 z " + }, + "•": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 694 l 347 694 l 347 347 l 0 347 l 0 694 z " + }, + "…": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 z " + }, + "‰": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 1042 347 l 1215 347 l 1215 0 l 1042 0 l 1042 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "‱": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 174 l 174 174 l 174 521 m 521 347 l 694 347 l 694 0 l 521 0 l 521 347 m 868 347 l 1042 347 l 1042 0 l 868 0 l 868 347 m 1215 347 l 1389 347 l 1389 0 l 1215 0 l 1215 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "′": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 z " + }, + "″": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 z " + }, + "‴": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "‵": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 z " + }, + "‶": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 z " + }, + "‷": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 z " + }, + "‹": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "›": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "※": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 1042 694 l 1215 694 l 1215 521 l 1042 521 l 1042 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 z " + }, + "‼": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 347 l 0 347 l 0 1215 m 347 1215 l 521 1215 l 521 347 l 347 347 l 347 1215 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "‽": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 521 1042 l 521 694 l 694 694 l 694 521 l 521 521 l 521 347 l 347 347 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "⁂": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 z " + }, + "⁈": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 1042 1215 l 1215 1215 l 1215 347 l 1042 347 l 1042 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 z " + }, + "⁉": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 347 l 0 347 l 0 1215 m 521 1215 l 1042 1215 l 1042 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 1042 1042 l 1215 1042 l 1215 694 l 1042 694 l 1042 1042 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "⁊": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 694 868 l 694 521 l 521 521 l 521 694 l 0 694 l 0 868 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⁋": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 868 1215 l 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 694 l 694 694 l 694 0 l 521 0 l 521 1042 l 347 1042 l 347 0 l 174 0 l 174 1042 l 0 1042 l 0 1215 z " + }, + "⁎": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "⁏": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 0 174 l 174 174 l 174 -174 l 0 -174 l 0 174 z " + }, + "⁑": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "⁒": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 521 1215 l 521 868 l 347 868 l 347 1215 m 174 868 l 347 868 l 347 347 l 174 347 l 174 868 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "⁗": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 1215 1215 l 1389 1215 l 1389 1042 l 1215 1042 l 1215 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 1042 z " + }, + "⁰": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 521 1042 l 694 1042 l 694 521 l 521 521 l 521 1042 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 z " + }, + "ⁱ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 z " + }, + "⁴": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 1215 l 694 1215 l 694 347 l 521 347 l 521 521 l 0 521 l 0 868 l 174 868 l 174 694 l 521 694 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 z " + }, + "⁵": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 694 1215 l 694 1042 l 174 1042 l 174 868 l 521 868 l 521 694 l 0 694 l 0 1215 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 0 521 l 521 521 l 521 347 l 0 347 l 0 521 z " + }, + "⁶": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 521 868 l 521 694 l 174 694 l 174 521 l 0 521 l 0 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 z " + }, + "⁷": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 694 1215 l 694 868 l 521 868 l 521 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 347 l 174 347 l 174 694 z " + }, + "⁸": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 z " + }, + "⁹": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 521 l 521 521 l 521 694 l 174 694 l 174 868 l 521 868 l 521 1042 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 z " + }, + "⁺": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 1042 l 347 1042 l 347 868 l 521 868 l 521 694 l 347 694 l 347 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 z " + }, + "⁻": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 521 868 l 521 694 l 0 694 l 0 868 z " + }, + "⁼": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1042 l 521 1042 l 521 868 l 0 868 l 0 1042 m 0 694 l 521 694 l 521 521 l 0 521 l 0 694 z " + }, + "⁽": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 z " + }, + "⁾": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 174 1042 l 347 1042 l 347 521 l 174 521 l 174 1042 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 z " + }, + "ⁿ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1042 l 521 1042 l 521 868 l 174 868 l 174 347 l 0 347 l 0 1042 m 521 868 l 694 868 l 694 347 l 521 347 l 521 868 z " + }, + "₀": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 521 521 l 694 521 l 694 0 l 521 0 l 521 521 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "₁": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 694 l 347 694 l 347 0 l 521 0 l 521 -174 l 0 -174 l 0 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 z " + }, + "₂": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 174 174 l 347 174 l 347 0 l 694 0 l 694 -174 l 0 -174 l 0 0 l 174 0 l 174 174 z " + }, + "₃": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "₄": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 347 694 l 694 694 l 694 -174 l 521 -174 l 521 0 l 0 0 l 0 347 l 174 347 l 174 174 l 521 174 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 z " + }, + "₅": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 694 l 694 694 l 694 521 l 174 521 l 174 347 l 521 347 l 521 174 l 0 174 l 0 694 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 0 0 l 521 0 l 521 -174 l 0 -174 l 0 0 z " + }, + "₆": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 521 347 l 521 174 l 174 174 l 174 0 l 0 0 l 0 521 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "₇": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 694 l 694 694 l 694 347 l 521 347 l 521 521 l 174 521 l 174 347 l 0 347 l 0 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 174 174 l 347 174 l 347 -174 l 174 -174 l 174 174 z " + }, + "₈": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 174 347 l 521 347 l 521 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "₉": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 521 521 l 694 521 l 694 0 l 521 0 l 521 174 l 174 174 l 174 347 l 521 347 l 521 521 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "₊": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 521 l 347 521 l 347 347 l 521 347 l 521 174 l 347 174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 347 l 174 347 l 174 521 z " + }, + "₋": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 347 l 521 347 l 521 174 l 0 174 l 0 347 z " + }, + "₌": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 521 l 521 521 l 521 347 l 0 347 l 0 521 m 0 174 l 521 174 l 521 0 l 0 0 l 0 174 z " + }, + "₍": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 174 0 l 347 0 l 347 -174 l 174 -174 l 174 0 z " + }, + "₎": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 347 521 l 347 0 l 174 0 l 174 521 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 z " + }, + "₠": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 347 868 l 868 868 l 868 694 l 521 694 l 521 521 l 694 521 l 694 347 l 521 347 l 521 174 l 868 174 l 868 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 868 z " + }, + "₡": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 521 1042 l 521 1215 l 694 1215 l 694 868 l 174 868 l 174 1215 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 174 347 l 694 347 l 694 0 l 521 0 l 521 174 l 347 174 l 347 0 l 174 0 l 174 347 z " + }, + "₢": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 521 694 l 868 694 l 868 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 174 l 694 174 l 694 0 l 174 0 l 174 174 l 347 174 l 347 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "₣": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 1042 1215 l 1042 1042 l 347 1042 l 347 868 l 694 868 l 694 694 l 347 694 l 347 521 l 521 521 l 521 347 l 347 347 l 347 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 1215 z " + }, + "₤": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 521 868 l 521 694 l 347 694 l 347 521 l 521 521 l 521 347 l 347 347 l 347 174 l 868 174 l 868 0 l 0 0 l 0 174 l 174 174 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 z " + }, + "₥": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 868 l 521 868 l 521 694 l 694 694 l 694 521 l 521 521 l 521 -174 l 347 -174 l 347 521 l 174 521 l 174 0 l 0 0 l 0 694 l 347 694 l 347 868 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "₦": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 1042 l 521 1042 l 521 868 l 868 868 l 868 1215 l 1042 1215 l 1042 868 l 1215 868 l 1215 694 l 1042 694 l 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 0 l 868 0 l 868 347 l 347 347 l 347 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 347 694 l 347 521 l 694 521 l 694 694 l 347 694 z " + }, + "₩": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 1042 l 868 1042 l 868 1215 l 1042 1215 l 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 694 l 1215 694 l 1215 521 l 1042 521 l 1042 0 l 868 0 l 868 174 l 694 174 l 694 347 l 868 347 l 868 521 l 694 521 l 694 347 l 521 347 l 521 521 l 347 521 l 347 347 l 521 347 l 521 174 l 347 174 l 347 0 l 174 0 l 174 521 l 0 521 l 0 694 l 174 694 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 347 868 l 347 694 l 868 694 l 868 868 l 347 868 z " + }, + "₪": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 1042 868 l 1215 868 l 1215 0 l 521 0 l 521 174 l 1042 174 l 1042 868 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 z " + }, + "₫": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 868 1215 l 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 174 l 174 174 l 174 347 l 694 347 l 694 521 l 521 521 l 521 694 l 694 694 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 0 0 l 868 0 l 868 -174 l 0 -174 l 0 0 z " + }, + "€": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 694 868 l 694 694 l 347 694 l 347 521 l 694 521 l 694 347 l 347 347 l 347 174 l 174 174 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "₭": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 868 l 694 868 l 694 1042 l 868 1042 l 868 868 l 1042 868 l 1042 694 l 868 694 l 868 521 l 694 521 l 694 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 868 521 l 1042 521 l 1042 0 l 868 0 l 868 521 z " + }, + "₮": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 521 694 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 521 l 174 521 l 174 694 l 347 694 l 347 1042 l 0 1042 l 0 1215 z " + }, + "₰": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 694 347 l 868 347 l 868 0 l 694 0 l 694 347 m 347 0 l 694 0 l 694 -174 l 347 -174 l 347 0 z " + }, + "₱": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 868 1215 l 868 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 694 l 1215 694 l 1215 521 l 868 521 l 868 347 l 347 347 l 347 0 l 174 0 l 174 521 l 0 521 l 0 694 l 174 694 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 347 868 l 347 694 l 868 694 l 868 868 l 347 868 z " + }, + "₲": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 868 1042 l 868 868 l 521 868 l 521 694 l 868 694 l 868 347 l 694 347 l 694 521 l 521 521 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 z " + }, + "₳": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 868 868 l 868 1042 l 1042 1042 l 1042 868 l 1215 868 l 1215 694 l 1042 694 l 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 0 l 868 0 l 868 347 l 347 347 l 347 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 m 347 694 l 347 521 l 868 521 l 868 694 l 347 694 z " + }, + "₴": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 868 1042 l 1042 1042 l 1042 868 l 1215 868 l 1215 694 l 694 694 l 694 521 l 1215 521 l 1215 347 l 347 347 l 347 174 l 174 174 l 174 347 l 0 347 l 0 521 l 521 521 l 521 694 l 0 694 l 0 868 l 868 868 l 868 1042 m 347 174 l 1042 174 l 1042 0 l 347 0 l 347 174 z " + }, + "₵": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 868 l 521 868 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 347 347 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 z " + }, + "₶": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 868 l 521 868 l 521 1215 l 694 1215 l 694 868 l 868 868 l 868 694 l 694 694 l 694 174 l 521 174 l 521 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "₷": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 1215 1215 l 1215 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 521 868 l 1042 868 l 1042 694 l 521 694 l 521 868 m 1042 694 l 1215 694 l 1215 347 l 1042 347 l 1042 694 m 0 521 l 347 521 l 347 347 l 174 347 l 174 0 l 0 0 l 0 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 0 l 347 0 l 347 347 m 694 347 l 1042 347 l 1042 174 l 868 174 l 868 0 l 694 0 l 694 347 z " + }, + "₸": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 0 1042 l 0 1215 m 0 868 l 868 868 l 868 694 l 521 694 l 521 0 l 347 0 l 347 694 l 0 694 l 0 868 z " + }, + "₹": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 694 1042 l 694 868 l 868 868 l 868 694 l 521 694 l 521 521 l 347 521 l 347 694 l 0 694 l 0 868 l 521 868 l 521 1042 l 0 1042 l 0 1215 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "₺": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 1042 l 694 1042 l 694 868 l 347 868 l 347 694 l 694 694 l 694 521 l 347 521 l 347 174 l 694 174 l 694 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 868 521 l 1042 521 l 1042 347 l 868 347 l 868 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "₻": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 347 1042 l 1042 1042 l 1042 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 521 694 l 521 521 l 347 521 l 347 174 l 174 174 l 174 347 l 0 347 l 0 521 l 174 521 l 174 868 m 1042 868 l 1215 868 l 1215 521 l 1042 521 l 1042 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 868 521 l 1042 521 l 1042 347 l 868 347 l 868 521 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "₼": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 868 l 521 868 l 521 694 l 694 694 l 694 521 l 521 521 l 521 0 l 347 0 l 347 521 l 174 521 l 174 694 l 347 694 l 347 868 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "₽": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 868 1215 l 868 1042 l 347 1042 l 347 868 l 868 868 l 868 694 l 347 694 l 347 521 l 694 521 l 694 347 l 347 347 l 347 0 l 174 0 l 174 347 l 0 347 l 0 521 l 174 521 l 174 1215 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 z " + }, + "₾": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 1215 l 868 1215 l 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 521 l 694 521 l 694 868 l 521 868 l 521 521 l 347 521 l 347 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 174 347 l 347 347 l 347 174 l 1042 174 l 1042 0 l 0 0 l 0 174 l 174 174 l 174 347 z " + }, + "₿": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 521 1042 l 521 1215 l 694 1215 l 694 868 l 174 868 l 174 694 l 694 694 l 694 521 l 174 521 l 174 347 l 694 347 l 694 0 l 521 0 l 521 174 l 347 174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 1042 l 174 1042 l 174 1215 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 z " + }, + "℗": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 347 868 l 521 868 l 521 694 l 694 694 l 694 868 l 868 868 l 868 521 l 521 521 l 521 347 l 347 347 l 347 868 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "™": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 694 1215 l 694 1042 l 868 1042 l 868 868 l 694 868 l 694 521 l 521 521 l 521 1042 l 347 1042 l 347 521 l 174 521 l 174 1042 l 0 1042 l 0 1215 m 1215 1215 l 1389 1215 l 1389 521 l 1215 521 l 1215 868 l 1042 868 l 1042 1042 l 1215 1042 l 1215 1215 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 z " + }, + "Ⅎ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 0 l 0 0 l 0 174 l 694 174 l 694 347 l 347 347 l 347 521 l 694 521 l 694 1215 z " + }, + "⅁": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 347 521 l 347 347 l 0 347 l 0 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "⅄": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 347 l 347 347 l 347 1215 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "⅋": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 521 868 l 521 694 l 694 694 l 694 521 l 521 521 l 521 347 l 347 347 l 347 694 l 174 694 l 174 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "⅐": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1389 694 l 1389 347 l 1215 347 l 1215 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 1042 347 l 1215 347 l 1215 0 l 1042 0 l 1042 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⅑": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1389 694 l 1389 174 l 1215 174 l 1215 347 l 868 347 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 z " + }, + "⅓": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1389 694 l 1389 521 l 1215 521 l 1215 347 l 1042 347 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 1215 347 l 1389 347 l 1389 174 l 1215 174 l 1215 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1215 174 l 1215 0 l 868 0 l 868 174 z " + }, + "⅔": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 347 1215 l 347 868 l 174 868 l 174 1042 l 0 1042 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 0 521 l 0 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1389 694 l 1389 521 l 1215 521 l 1215 347 l 1042 347 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 1215 347 l 1389 347 l 1389 174 l 1215 174 l 1215 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1215 174 l 1215 0 l 868 0 l 868 174 z " + }, + "⅕": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1389 694 l 1389 521 l 1215 521 l 1215 347 l 868 347 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 1215 347 l 1389 347 l 1389 174 l 1215 174 l 1215 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1215 174 l 1215 0 l 868 0 l 868 174 z " + }, + "⅖": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 347 1215 l 347 868 l 174 868 l 174 1042 l 0 1042 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 0 521 l 0 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1389 694 l 1389 521 l 1215 521 l 1215 347 l 868 347 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 1215 347 l 1389 347 l 1389 174 l 1215 174 l 1215 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1215 174 l 1215 0 l 868 0 l 868 174 z " + }, + "⅗": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 l 0 1042 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1389 694 l 1389 521 l 1215 521 l 1215 347 l 868 347 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 1215 347 l 1389 347 l 1389 174 l 1215 174 l 1215 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1215 174 l 1215 0 l 868 0 l 868 174 z " + }, + "⅙": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 694 521 l 868 521 l 868 347 l 1215 347 l 1215 0 l 694 0 l 694 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⅚": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 868 l 0 868 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 694 521 l 868 521 l 868 347 l 1215 347 l 1215 0 l 694 0 l 694 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⅛": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 1042 694 l 1389 694 l 1389 347 l 1215 347 l 1215 521 l 1042 521 l 1042 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 694 521 l 1042 521 l 1042 347 l 868 347 l 868 174 l 1042 174 l 1042 347 l 1215 347 l 1215 0 l 694 0 l 694 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⅜": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 l 0 1042 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 1042 694 l 1389 694 l 1389 347 l 1215 347 l 1215 521 l 1042 521 l 1042 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 694 521 l 1042 521 l 1042 347 l 868 347 l 868 174 l 1042 174 l 1042 347 l 1215 347 l 1215 0 l 694 0 l 694 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⅝": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 868 l 0 868 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 1042 694 l 1389 694 l 1389 347 l 1215 347 l 1215 521 l 1042 521 l 1042 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 694 521 l 1042 521 l 1042 347 l 868 347 l 868 174 l 1042 174 l 1042 347 l 1215 347 l 1215 0 l 694 0 l 694 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⅞": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 521 1215 l 521 868 l 347 868 l 347 1042 l 0 1042 l 0 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 174 868 l 347 868 l 347 521 l 174 521 l 174 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 1042 694 l 1389 694 l 1389 347 l 1215 347 l 1215 521 l 1042 521 l 1042 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 694 521 l 1042 521 l 1042 347 l 868 347 l 868 174 l 1042 174 l 1042 347 l 1215 347 l 1215 0 l 694 0 l 694 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⅟": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "↉": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 347 1042 l 521 1042 l 521 694 l 347 694 l 347 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 868 694 l 1389 694 l 1389 521 l 1215 521 l 1215 347 l 1042 347 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 1215 347 l 1389 347 l 1389 174 l 1215 174 l 1215 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1215 174 l 1215 0 l 868 0 l 868 174 z " + }, + "←": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1042 l 521 1042 l 521 694 l 1215 694 l 1215 521 l 521 521 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 0 521 l 0 694 l 174 694 l 174 868 l 347 868 l 347 1042 z " + }, + "↑": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 694 1042 l 694 868 l 868 868 l 868 694 l 521 694 l 521 0 l 347 0 l 347 694 l 0 694 l 0 868 l 174 868 l 174 1042 l 347 1042 l 347 1215 z " + }, + "→": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 694 1042 l 868 1042 l 868 868 l 1042 868 l 1042 694 l 1215 694 l 1215 521 l 1042 521 l 1042 347 l 868 347 l 868 174 l 694 174 l 694 521 l 0 521 l 0 694 l 694 694 l 694 1042 z " + }, + "↓": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 521 l 868 521 l 868 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 0 347 l 0 521 l 347 521 l 347 1215 z " + }, + "↔": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 347 1042 l 521 1042 l 521 694 l 868 694 l 868 1042 l 1042 1042 l 1042 868 l 1215 868 l 1215 694 l 1389 694 l 1389 521 l 1215 521 l 1215 347 l 1042 347 l 1042 174 l 868 174 l 868 521 l 521 521 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 0 521 l 0 694 l 174 694 l 174 868 l 347 868 l 347 1042 z " + }, + "⇄": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 868 1215 l 1042 1215 l 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 694 l 868 694 l 868 868 l 0 868 l 0 1042 l 868 1042 l 868 1215 m 174 694 l 347 694 l 347 521 l 1215 521 l 1215 347 l 347 347 l 347 174 l 174 174 l 174 347 l 0 347 l 0 521 l 174 521 l 174 694 z " + }, + "⇏": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 521 1042 l 694 1042 l 694 868 l 868 868 l 868 1042 l 1042 1042 l 1042 868 l 1215 868 l 1215 694 l 521 694 l 521 521 l 1215 521 l 1215 347 l 1042 347 l 1042 174 l 868 174 l 868 347 l 347 347 l 347 174 l 174 174 l 174 347 l 0 347 l 0 521 l 347 521 l 347 694 l 0 694 l 0 868 l 521 868 l 521 1042 m 1215 694 l 1389 694 l 1389 521 l 1215 521 l 1215 694 z " + }, + "⇒": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 868 1042 l 1042 1042 l 1042 868 l 1215 868 l 1215 694 l 0 694 l 0 868 l 868 868 l 868 1042 m 1215 694 l 1389 694 l 1389 521 l 1215 521 l 1215 694 m 0 521 l 1215 521 l 1215 347 l 1042 347 l 1042 174 l 868 174 l 868 347 l 0 347 l 0 521 z " + }, + "⇔": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 347 1042 l 521 1042 l 521 868 l 868 868 l 868 1042 l 1042 1042 l 1042 868 l 1215 868 l 1215 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 1215 694 l 1389 694 l 1389 521 l 1215 521 l 1215 694 m 174 521 l 1215 521 l 1215 347 l 1042 347 l 1042 174 l 868 174 l 868 347 l 521 347 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 z " + }, + "⇵": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 347 l 521 347 l 521 174 l 347 174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 347 l 174 347 l 174 1215 m 694 1215 l 868 1215 l 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 0 l 694 0 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 z " + }, + "∀": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 1042 1215 l 1215 1215 l 1215 868 l 1042 868 l 1042 1215 m 174 868 l 1042 868 l 1042 521 l 868 521 l 868 694 l 347 694 l 347 521 l 174 521 l 174 868 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "∁": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "∂": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 694 1042 l 868 1042 l 868 347 l 694 347 l 694 521 l 174 521 l 174 694 l 694 694 l 694 1042 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "∃": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 0 l 0 0 l 0 174 l 694 174 l 694 521 l 0 521 l 0 694 l 694 694 l 694 1042 l 0 1042 l 0 1215 z " + }, + "∄": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 0 l 174 0 l 174 -174 l 0 -174 l 0 174 l 174 174 l 174 521 l 0 521 l 0 694 l 347 694 l 347 1042 l 0 1042 l 0 1215 m 521 1042 l 521 694 l 694 694 l 694 1042 l 521 1042 m 347 521 l 347 174 l 694 174 l 694 521 l 347 521 z " + }, + "∅": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "∈": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 868 694 l 868 521 l 174 521 l 174 347 l 0 347 l 0 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "∉": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 694 l 521 694 l 521 868 l 694 868 l 694 694 l 868 694 l 868 521 l 521 521 l 521 347 l 347 347 l 347 521 l 174 521 l 174 347 l 0 347 l 0 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "∋": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 521 1215 l 521 1042 l 0 1042 l 0 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 694 868 l 868 868 l 868 347 l 694 347 l 694 521 l 0 521 l 0 694 l 694 694 l 694 868 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 0 174 l 521 174 l 521 0 l 0 0 l 0 174 z " + }, + "∌": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 521 1215 l 521 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 694 694 l 694 868 l 868 868 l 868 347 l 694 347 l 694 521 l 347 521 l 347 347 l 174 347 l 174 521 l 0 521 l 0 694 l 347 694 l 347 868 m 0 347 l 174 347 l 174 174 l 521 174 l 521 0 l 0 0 l 0 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "∑": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 868 174 l 868 0 l 0 0 l 0 347 z " + }, + "−": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 694 l 868 694 l 868 521 l 0 521 l 0 694 z " + }, + "∓": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 0 1042 l 0 1215 m 347 868 l 521 868 l 521 521 l 868 521 l 868 347 l 521 347 l 521 0 l 347 0 l 347 347 l 0 347 l 0 521 l 347 521 l 347 868 z " + }, + "∙": { + "ha": 1042, + "x_min": 521, + "x_max": 868, + "o": "m 521 694 l 868 694 l 868 347 l 521 347 l 521 694 z " + }, + "√": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 521 1215 l 1042 1215 l 1042 1042 l 694 1042 l 694 0 l 347 0 l 347 174 l 521 174 l 521 1215 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 z " + }, + "∛": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 l 0 1042 l 0 1215 m 694 1215 l 1215 1215 l 1215 1042 l 868 1042 l 868 0 l 521 0 l 521 174 l 694 174 l 694 1215 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "∜": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 521 1215 l 521 521 l 347 521 l 347 694 l 0 694 l 0 1042 l 174 1042 l 174 868 l 347 868 l 347 1042 l 174 1042 l 174 1215 m 694 1215 l 1215 1215 l 1215 1042 l 868 1042 l 868 0 l 521 0 l 521 174 l 694 174 l 694 1215 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "∝": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 694 868 l 1042 868 l 1042 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 174 347 l 521 347 l 521 174 l 174 174 l 174 347 m 694 347 l 1042 347 l 1042 174 l 694 174 l 694 347 z " + }, + "∞": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 694 868 l 1042 868 l 1042 694 l 694 694 l 694 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 1042 694 l 1215 694 l 1215 347 l 1042 347 l 1042 694 m 174 347 l 521 347 l 521 174 l 174 174 l 174 347 m 694 347 l 1042 347 l 1042 174 l 694 174 l 694 347 z " + }, + "∥": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 0 l 0 0 l 0 1215 m 347 1215 l 521 1215 l 521 0 l 347 0 l 347 1215 z " + }, + "∧": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 521 l 174 521 l 174 868 m 521 868 l 694 868 l 694 521 l 521 521 l 521 868 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 694 521 l 868 521 l 868 174 l 694 174 l 694 521 z " + }, + "∨": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 694 l 694 694 l 694 1042 m 174 694 l 347 694 l 347 347 l 174 347 l 174 694 m 521 694 l 694 694 l 694 347 l 521 347 l 521 694 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "∩": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 m 694 1042 l 868 1042 l 868 0 l 694 0 l 694 1042 z " + }, + "∫": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 868 1215 l 868 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 0 l 347 0 l 347 1042 m 0 0 l 347 0 l 347 -174 l 0 -174 l 0 0 z " + }, + "∮": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 868 1215 l 868 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 521 694 l 521 521 l 694 521 l 694 347 l 521 347 l 521 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 0 0 l 347 0 l 347 -174 l 0 -174 l 0 0 z " + }, + "∴": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "∵": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "≈": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1042 l 521 1042 l 521 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 521 868 l 868 868 l 868 694 l 521 694 l 521 868 m 174 521 l 521 521 l 521 347 l 174 347 l 174 521 m 868 521 l 1042 521 l 1042 347 l 868 347 l 868 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 521 347 l 868 347 l 868 174 l 521 174 l 521 347 z " + }, + "≔": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 1215 868 l 1215 694 l 347 694 l 347 868 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 347 521 l 1215 521 l 1215 347 l 347 347 l 347 521 z " + }, + "≠": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1042 l 694 1042 l 694 868 l 868 868 l 868 694 l 521 694 l 521 347 l 868 347 l 868 174 l 347 174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 347 l 347 347 l 347 694 l 0 694 l 0 868 l 521 868 l 521 1042 z " + }, + "≡": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1042 l 1042 1042 l 1042 868 l 0 868 l 0 1042 m 0 694 l 1042 694 l 1042 521 l 0 521 l 0 694 m 0 347 l 1042 347 l 1042 174 l 0 174 l 0 347 z " + }, + "≢": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1215 l 868 1215 l 868 1042 l 1042 1042 l 1042 868 l 694 868 l 694 694 l 1042 694 l 1042 521 l 521 521 l 521 347 l 1042 347 l 1042 174 l 347 174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 347 l 347 347 l 347 521 l 0 521 l 0 694 l 521 694 l 521 868 l 0 868 l 0 1042 l 694 1042 l 694 1215 z " + }, + "≤": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 0 174 l 868 174 l 868 0 l 0 0 l 0 174 z " + }, + "≥": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 174 l 868 174 l 868 0 l 0 0 l 0 174 z " + }, + "⊂": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "⊃": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 521 1215 l 521 1042 l 0 1042 l 0 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 0 174 l 521 174 l 521 0 l 0 0 l 0 174 z " + }, + "⊄": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 521 l 347 521 l 347 174 l 174 174 l 174 347 l 0 347 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "⊅": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 521 1215 l 521 1042 l 0 1042 l 0 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 868 868 l 868 347 l 694 347 l 694 694 l 521 694 l 521 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 521 174 l 521 0 l 0 0 l 0 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "⊆": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 521 l 0 521 l 0 1042 m 174 521 l 868 521 l 868 347 l 174 347 l 174 521 m 0 174 l 868 174 l 868 0 l 0 0 l 0 174 z " + }, + "⊇": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 0 1042 l 0 1215 m 694 1042 l 868 1042 l 868 521 l 694 521 l 694 1042 m 0 521 l 694 521 l 694 347 l 0 347 l 0 521 m 0 174 l 868 174 l 868 0 l 0 0 l 0 174 z " + }, + "⊢": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 174 1042 l 174 694 l 868 694 l 868 521 l 174 521 l 174 174 l 0 174 l 0 1042 z " + }, + "⊤": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 868 l 521 868 l 521 174 l 347 174 l 347 868 l 0 868 l 0 1042 z " + }, + "⊥": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 347 l 868 347 l 868 174 l 0 174 l 0 347 l 347 347 l 347 1042 z " + }, + "⊨": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 174 1042 l 174 868 l 868 868 l 868 694 l 174 694 l 174 521 l 868 521 l 868 347 l 174 347 l 174 174 l 0 174 l 0 1042 z " + }, + "⊻": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 0 347 l 868 347 l 868 174 l 0 174 l 0 347 z " + }, + "⊼": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 868 l 0 868 l 0 1042 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "⊽": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 868 l 0 868 l 0 1042 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "⋃": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 694 1215 l 868 1215 l 868 174 l 694 174 l 694 1215 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "⋆": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 z " + }, + "⌀": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "⌂": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 0 694 l 174 694 l 174 174 l 1042 174 l 1042 694 l 1215 694 l 1215 0 l 0 0 l 0 694 z " + }, + "⌘": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 1042 l 868 1042 l 868 868 l 1042 868 l 1042 694 l 868 694 l 868 521 l 1042 521 l 1042 347 l 868 347 l 868 174 l 694 174 l 694 347 l 521 347 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 521 694 l 521 521 l 694 521 l 694 694 l 521 694 m 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 1042 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 1042 347 l 1215 347 l 1215 174 l 1042 174 l 1042 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 z " + }, + "⌚": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 1042 1215 l 1042 1042 l 694 1042 l 694 694 l 868 694 l 868 521 l 521 521 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 1042 1042 l 1215 1042 l 1215 174 l 1042 174 l 1042 1042 m 174 174 l 1042 174 l 1042 0 l 174 0 l 174 174 z " + }, + "⌛": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 694 l 868 694 l 868 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 l 0 1042 l 0 1215 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 347 521 l 347 174 l 868 174 l 868 521 l 1042 521 l 1042 174 l 1215 174 l 1215 0 l 0 0 l 0 174 l 174 174 l 174 521 z " + }, + "⌠": { + "ha": 1389, + "x_min": 521, + "x_max": 1215, + "o": "m 694 1215 l 1042 1215 l 1042 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 -174 l 521 -174 l 521 1042 m 1042 1042 l 1215 1042 l 1215 694 l 1042 694 l 1042 1042 z " + }, + "⌡": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 521 1215 l 694 1215 l 694 0 l 521 0 l 521 1215 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 174 0 l 521 0 l 521 -174 l 174 -174 l 174 0 z " + }, + "⏏": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 868 694 l 868 521 l 0 521 l 0 694 l 174 694 l 174 868 l 347 868 l 347 1042 m 0 347 l 868 347 l 868 174 l 0 174 l 0 347 z " + }, + "⏩": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 521 694 l 521 1042 l 694 1042 l 694 868 l 868 868 l 868 694 l 1042 694 l 1042 521 l 868 521 l 868 347 l 694 347 l 694 174 l 521 174 l 521 521 l 347 521 l 347 347 l 174 347 l 174 174 l 0 174 l 0 1042 z " + }, + "⏪": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 1042 l 521 1042 l 521 694 l 694 694 l 694 868 l 868 868 l 868 1042 l 1042 1042 l 1042 174 l 868 174 l 868 347 l 694 347 l 694 521 l 521 521 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 0 521 l 0 694 l 174 694 l 174 868 l 347 868 l 347 1042 z " + }, + "⏭": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 521 694 l 521 1042 l 694 1042 l 694 868 l 868 868 l 868 694 l 1042 694 l 1042 1042 l 1215 1042 l 1215 174 l 1042 174 l 1042 521 l 868 521 l 868 347 l 694 347 l 694 174 l 521 174 l 521 521 l 347 521 l 347 347 l 174 347 l 174 174 l 0 174 l 0 1042 z " + }, + "⏮": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1042 l 174 1042 l 174 694 l 347 694 l 347 868 l 521 868 l 521 1042 l 694 1042 l 694 694 l 868 694 l 868 868 l 1042 868 l 1042 1042 l 1215 1042 l 1215 174 l 1042 174 l 1042 347 l 868 347 l 868 521 l 694 521 l 694 174 l 521 174 l 521 347 l 347 347 l 347 521 l 174 521 l 174 174 l 0 174 l 0 1042 z " + }, + "⏯": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 521 694 l 521 1042 l 694 1042 l 694 174 l 521 174 l 521 521 l 347 521 l 347 347 l 174 347 l 174 174 l 0 174 l 0 1042 m 868 1042 l 1042 1042 l 1042 174 l 868 174 l 868 1042 z " + }, + "⏴": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1042 l 521 1042 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 0 521 l 0 694 l 174 694 l 174 868 l 347 868 l 347 1042 z " + }, + "⏵": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1042 l 174 1042 l 174 868 l 347 868 l 347 694 l 521 694 l 521 521 l 347 521 l 347 347 l 174 347 l 174 174 l 0 174 l 0 1042 z " + }, + "⏶": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 868 l 521 868 l 521 694 l 694 694 l 694 521 l 868 521 l 868 347 l 0 347 l 0 521 l 174 521 l 174 694 l 347 694 l 347 868 z " + }, + "⏷": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 694 694 l 694 521 l 521 521 l 521 347 l 347 347 l 347 521 l 174 521 l 174 694 l 0 694 l 0 868 z " + }, + "⏸": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 m 347 1042 l 521 1042 l 521 174 l 347 174 l 347 1042 z " + }, + "⏹": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 174 l 0 174 l 0 1042 z " + }, + "⏺": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 694 1042 l 694 868 l 868 868 l 868 347 l 694 347 l 694 174 l 174 174 l 174 347 l 0 347 l 0 868 l 174 868 l 174 1042 z " + }, + "⏻": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 694 l 521 694 l 521 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "⏼": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 521 868 l 694 868 l 694 347 l 521 347 l 521 868 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "⏽": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 0 l 0 0 l 0 1215 z " + }, + "─": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 521 l 1389 521 l 1389 347 l 0 347 l 0 521 z " + }, + "│": { + "ha": 1042, + "x_min": 521, + "x_max": 868, + "o": "m 521 1215 l 868 1215 l 868 -174 l 521 -174 l 521 1215 z " + }, + "┌": { + "ha": 1563, + "x_min": 521, + "x_max": 1389, + "o": "m 521 521 l 1389 521 l 1389 347 l 868 347 l 868 -174 l 521 -174 l 521 521 z " + }, + "┐": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 521 l 868 521 l 868 -174 l 521 -174 l 521 347 l 0 347 l 0 521 z " + }, + "└": { + "ha": 1563, + "x_min": 521, + "x_max": 1389, + "o": "m 521 1215 l 868 1215 l 868 521 l 1389 521 l 1389 347 l 521 347 l 521 1215 z " + }, + "┘": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 868 1215 l 868 347 l 0 347 l 0 521 l 521 521 l 521 1215 z " + }, + "├": { + "ha": 1563, + "x_min": 521, + "x_max": 1389, + "o": "m 521 1215 l 868 1215 l 868 521 l 1389 521 l 1389 347 l 868 347 l 868 -174 l 521 -174 l 521 1215 z " + }, + "┤": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 868 1215 l 868 -174 l 521 -174 l 521 347 l 0 347 l 0 521 l 521 521 l 521 1215 z " + }, + "┬": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 521 l 1389 521 l 1389 347 l 868 347 l 868 -174 l 521 -174 l 521 347 l 0 347 l 0 521 z " + }, + "┴": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 521 1215 l 868 1215 l 868 521 l 1389 521 l 1389 347 l 0 347 l 0 521 l 521 521 l 521 1215 z " + }, + "┼": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 521 1215 l 868 1215 l 868 521 l 1389 521 l 1389 347 l 868 347 l 868 -174 l 521 -174 l 521 347 l 0 347 l 0 521 l 521 521 l 521 1215 z " + }, + "═": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 868 l 1389 868 l 1389 694 l 0 694 l 0 868 m 0 521 l 1389 521 l 1389 347 l 0 347 l 0 521 z " + }, + "║": { + "ha": 1389, + "x_min": 347, + "x_max": 1215, + "o": "m 347 1215 l 694 1215 l 694 -174 l 347 -174 l 347 1215 m 868 1215 l 1215 1215 l 1215 -174 l 868 -174 l 868 1215 z " + }, + "╒": { + "ha": 1563, + "x_min": 521, + "x_max": 1389, + "o": "m 521 868 l 1389 868 l 1389 694 l 868 694 l 868 521 l 1389 521 l 1389 347 l 868 347 l 868 -174 l 521 -174 l 521 868 z " + }, + "╓": { + "ha": 1563, + "x_min": 347, + "x_max": 1389, + "o": "m 347 521 l 1389 521 l 1389 347 l 1215 347 l 1215 -174 l 868 -174 l 868 347 l 694 347 l 694 -174 l 347 -174 l 347 521 z " + }, + "╔": { + "ha": 1563, + "x_min": 347, + "x_max": 1389, + "o": "m 347 868 l 1389 868 l 1389 694 l 694 694 l 694 -174 l 347 -174 l 347 868 m 868 521 l 1389 521 l 1389 347 l 1215 347 l 1215 -174 l 868 -174 l 868 521 z " + }, + "╕": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 -174 l 521 -174 l 521 347 l 0 347 l 0 521 l 521 521 l 521 694 l 0 694 l 0 868 z " + }, + "╖": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 521 l 1215 521 l 1215 -174 l 868 -174 l 868 347 l 694 347 l 694 -174 l 347 -174 l 347 347 l 0 347 l 0 521 z " + }, + "╗": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 1215 868 l 1215 -174 l 868 -174 l 868 694 l 0 694 l 0 868 m 0 521 l 694 521 l 694 -174 l 347 -174 l 347 347 l 0 347 l 0 521 z " + }, + "╘": { + "ha": 1563, + "x_min": 521, + "x_max": 1389, + "o": "m 521 1215 l 868 1215 l 868 868 l 1389 868 l 1389 694 l 868 694 l 868 521 l 1389 521 l 1389 347 l 521 347 l 521 1215 z " + }, + "╙": { + "ha": 1563, + "x_min": 347, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 521 l 868 521 l 868 1215 l 1215 1215 l 1215 521 l 1389 521 l 1389 347 l 347 347 l 347 1215 z " + }, + "╚": { + "ha": 1563, + "x_min": 347, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 521 l 1389 521 l 1389 347 l 347 347 l 347 1215 m 868 1215 l 1215 1215 l 1215 868 l 1389 868 l 1389 694 l 868 694 l 868 1215 z " + }, + "╛": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 868 1215 l 868 347 l 0 347 l 0 521 l 521 521 l 521 694 l 0 694 l 0 868 l 521 868 l 521 1215 z " + }, + "╜": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 694 1215 l 694 521 l 868 521 l 868 1215 l 1215 1215 l 1215 347 l 0 347 l 0 521 l 347 521 l 347 1215 z " + }, + "╝": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 694 1215 l 694 694 l 0 694 l 0 868 l 347 868 l 347 1215 m 868 1215 l 1215 1215 l 1215 347 l 0 347 l 0 521 l 868 521 l 868 1215 z " + }, + "╞": { + "ha": 1563, + "x_min": 521, + "x_max": 1389, + "o": "m 521 1215 l 868 1215 l 868 868 l 1389 868 l 1389 694 l 868 694 l 868 521 l 1389 521 l 1389 347 l 868 347 l 868 -174 l 521 -174 l 521 1215 z " + }, + "╟": { + "ha": 1563, + "x_min": 347, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 -174 l 347 -174 l 347 1215 m 868 1215 l 1215 1215 l 1215 521 l 1389 521 l 1389 347 l 1215 347 l 1215 -174 l 868 -174 l 868 1215 z " + }, + "╠": { + "ha": 1563, + "x_min": 347, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 -174 l 347 -174 l 347 1215 m 868 1215 l 1215 1215 l 1215 868 l 1389 868 l 1389 694 l 868 694 l 868 1215 m 868 521 l 1389 521 l 1389 347 l 1215 347 l 1215 -174 l 868 -174 l 868 521 z " + }, + "╡": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 868 1215 l 868 -174 l 521 -174 l 521 347 l 0 347 l 0 521 l 521 521 l 521 694 l 0 694 l 0 868 l 521 868 l 521 1215 z " + }, + "╢": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 694 1215 l 694 -174 l 347 -174 l 347 347 l 0 347 l 0 521 l 347 521 l 347 1215 m 868 1215 l 1215 1215 l 1215 -174 l 868 -174 l 868 1215 z " + }, + "╣": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 694 1215 l 694 694 l 0 694 l 0 868 l 347 868 l 347 1215 m 868 1215 l 1215 1215 l 1215 -174 l 868 -174 l 868 1215 m 0 521 l 694 521 l 694 -174 l 347 -174 l 347 347 l 0 347 l 0 521 z " + }, + "╤": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 868 l 1389 868 l 1389 694 l 0 694 l 0 868 m 0 521 l 1389 521 l 1389 347 l 868 347 l 868 -174 l 521 -174 l 521 347 l 0 347 l 0 521 z " + }, + "╥": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 521 l 1389 521 l 1389 347 l 1215 347 l 1215 -174 l 868 -174 l 868 347 l 694 347 l 694 -174 l 347 -174 l 347 347 l 0 347 l 0 521 z " + }, + "╦": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 868 l 1389 868 l 1389 694 l 0 694 l 0 868 m 0 521 l 694 521 l 694 -174 l 347 -174 l 347 347 l 0 347 l 0 521 m 868 521 l 1389 521 l 1389 347 l 1215 347 l 1215 -174 l 868 -174 l 868 521 z " + }, + "╧": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 521 1215 l 868 1215 l 868 868 l 1389 868 l 1389 694 l 0 694 l 0 868 l 521 868 l 521 1215 m 0 521 l 1389 521 l 1389 347 l 0 347 l 0 521 z " + }, + "╨": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 521 l 868 521 l 868 1215 l 1215 1215 l 1215 521 l 1389 521 l 1389 347 l 0 347 l 0 521 l 347 521 l 347 1215 z " + }, + "╩": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 694 l 0 694 l 0 868 l 347 868 l 347 1215 m 868 1215 l 1215 1215 l 1215 868 l 1389 868 l 1389 694 l 868 694 l 868 1215 m 0 521 l 1389 521 l 1389 347 l 0 347 l 0 521 z " + }, + "╪": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 521 1215 l 868 1215 l 868 868 l 1389 868 l 1389 694 l 868 694 l 868 521 l 1389 521 l 1389 347 l 868 347 l 868 -174 l 521 -174 l 521 347 l 0 347 l 0 521 l 521 521 l 521 694 l 0 694 l 0 868 l 521 868 l 521 1215 z " + }, + "╫": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 521 l 868 521 l 868 1215 l 1215 1215 l 1215 521 l 1389 521 l 1389 347 l 1215 347 l 1215 -174 l 868 -174 l 868 347 l 694 347 l 694 -174 l 347 -174 l 347 347 l 0 347 l 0 521 l 347 521 l 347 1215 z " + }, + "╬": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 694 l 0 694 l 0 868 l 347 868 l 347 1215 m 868 1215 l 1215 1215 l 1215 868 l 1389 868 l 1389 694 l 868 694 l 868 1215 m 0 521 l 694 521 l 694 -174 l 347 -174 l 347 347 l 0 347 l 0 521 m 868 521 l 1389 521 l 1389 347 l 1215 347 l 1215 -174 l 868 -174 l 868 521 z " + }, + "▀": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 1389 1215 l 1389 521 l 0 521 l 0 1215 z " + }, + "▄": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 521 l 1389 521 l 1389 -174 l 0 -174 l 0 521 z " + }, + "█": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 1389 1215 l 1389 -174 l 0 -174 l 0 1215 z " + }, + "▌": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 1215 l 694 1215 l 694 -174 l 0 -174 l 0 1215 z " + }, + "▐": { + "ha": 1563, + "x_min": 694, + "x_max": 1389, + "o": "m 694 1215 l 1389 1215 l 1389 -174 l 694 -174 l 694 1215 z " + }, + "░": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 1042 868 l 1215 868 l 1215 694 l 1042 694 l 1042 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 m 694 0 l 868 0 l 868 -174 l 694 -174 l 694 0 z " + }, + "▒": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 1215 1215 l 1389 1215 l 1389 1042 l 1215 1042 l 1215 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 1215 868 l 1389 868 l 1389 694 l 1215 694 l 1215 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 1042 694 l 1215 694 l 1215 521 l 1042 521 l 1042 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 868 521 l 1042 521 l 1042 347 l 868 347 l 868 521 m 1215 521 l 1389 521 l 1389 347 l 1215 347 l 1215 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 1042 347 l 1215 347 l 1215 174 l 1042 174 l 1042 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 m 1215 174 l 1389 174 l 1389 0 l 1215 0 l 1215 174 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 m 347 0 l 521 0 l 521 -174 l 347 -174 l 347 0 m 694 0 l 868 0 l 868 -174 l 694 -174 l 694 0 m 1042 0 l 1215 0 l 1215 -174 l 1042 -174 l 1042 0 z " + }, + "▓": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 347 1215 l 347 1042 l 521 1042 l 521 1215 l 868 1215 l 868 1042 l 694 1042 l 694 868 l 868 868 l 868 694 l 1042 694 l 1042 868 l 868 868 l 868 1042 l 1042 1042 l 1042 1215 l 1389 1215 l 1389 694 l 1215 694 l 1215 521 l 1389 521 l 1389 0 l 1215 0 l 1215 -174 l 694 -174 l 694 0 l 521 0 l 521 174 l 347 174 l 347 0 l 521 0 l 521 -174 l 0 -174 l 0 174 l 174 174 l 174 347 l 0 347 l 0 868 l 174 868 l 174 1042 l 0 1042 l 0 1215 m 347 868 l 347 694 l 521 694 l 521 868 l 347 868 m 521 694 l 521 521 l 694 521 l 694 694 l 521 694 m 347 521 l 347 347 l 521 347 l 521 521 l 347 521 m 868 521 l 868 347 l 1042 347 l 1042 521 l 868 521 m 694 347 l 694 174 l 868 174 l 868 347 l 694 347 m 868 174 l 868 0 l 1042 0 l 1042 174 l 868 174 z " + }, + "■": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 174 l 0 174 l 0 1042 z " + }, + "□": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 174 l 0 174 l 0 1042 m 174 868 l 174 347 l 694 347 l 694 868 l 174 868 z " + }, + "▲": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 521 l 868 521 l 868 174 l 0 174 l 0 521 l 174 521 l 174 868 l 347 868 l 347 1215 z " + }, + "△": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 347 868 l 347 1215 m 174 868 l 347 868 l 347 521 l 174 521 l 174 868 m 521 868 l 694 868 l 694 521 l 521 521 l 521 868 m 0 521 l 174 521 l 174 347 l 694 347 l 694 521 l 868 521 l 868 174 l 0 174 l 0 521 z " + }, + "▶": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1042 l 347 1042 l 347 868 l 694 868 l 694 694 l 1042 694 l 1042 521 l 694 521 l 694 347 l 347 347 l 347 174 l 0 174 l 0 1042 z " + }, + "▷": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1042 l 347 1042 l 347 868 l 174 868 l 174 347 l 347 347 l 347 174 l 0 174 l 0 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 1042 694 l 1042 521 l 694 521 l 694 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 z " + }, + "▼": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 521 l 521 521 l 521 174 l 347 174 l 347 521 l 174 521 l 174 868 l 0 868 l 0 1215 z " + }, + "▽": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 868 l 694 868 l 694 1042 l 174 1042 l 174 868 l 0 868 l 0 1215 m 174 868 l 347 868 l 347 521 l 174 521 l 174 868 m 521 868 l 694 868 l 694 521 l 521 521 l 521 868 m 347 521 l 521 521 l 521 174 l 347 174 l 347 521 z " + }, + "◀": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1042 l 1042 1042 l 1042 174 l 694 174 l 694 347 l 347 347 l 347 521 l 0 521 l 0 694 l 347 694 l 347 868 l 694 868 l 694 1042 z " + }, + "◁": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 694 1042 l 1042 1042 l 1042 174 l 694 174 l 694 347 l 868 347 l 868 868 l 694 868 l 694 1042 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 347 521 l 694 521 l 694 347 l 347 347 l 347 521 z " + }, + "◆": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 868 694 l 868 521 l 694 521 l 694 347 l 521 347 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 0 521 l 0 694 l 174 694 l 174 868 l 347 868 l 347 1042 z " + }, + "◇": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 z " + }, + "○": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 694 1042 l 694 868 l 174 868 l 174 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 m 174 347 l 694 347 l 694 174 l 174 174 l 174 347 z " + }, + "◎": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 347 868 l 868 868 l 868 347 l 347 347 l 347 868 m 521 694 l 521 521 l 694 521 l 694 694 l 521 694 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "●": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 174 868 l 521 868 l 521 694 l 694 694 l 694 347 l 521 347 l 521 174 l 174 174 l 174 347 l 0 347 l 0 694 l 174 694 l 174 868 z " + }, + "◘": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 521 868 l 521 347 l 0 347 l 0 868 m 174 694 l 174 521 l 347 521 l 347 694 l 174 694 z " + }, + "◦": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 z " + }, + "☀": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 1215 1215 l 1389 1215 l 1389 1042 l 1215 1042 l 1215 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 1042 m 521 868 l 868 868 l 868 694 l 1042 694 l 1042 347 l 868 347 l 868 174 l 521 174 l 521 347 l 347 347 l 347 694 l 521 694 l 521 868 m 1215 694 l 1389 694 l 1389 521 l 1215 521 l 1215 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 m 694 0 l 868 0 l 868 -174 l 694 -174 l 694 0 m 1215 0 l 1389 0 l 1389 -174 l 1215 -174 l 1215 0 z " + }, + "☁": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 694 1215 l 1042 1215 l 1042 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 1042 1042 l 1215 1042 l 1215 694 l 1042 694 l 1042 1042 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 1215 694 l 1389 694 l 1389 347 l 1215 347 l 1215 694 m 174 347 l 1215 347 l 1215 174 l 174 174 l 174 347 z " + }, + "☂": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 694 l 1042 694 l 1042 868 l 1215 868 l 1215 521 l 694 521 l 694 0 l 521 0 l 521 521 l 0 521 l 0 868 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 347 0 l 521 0 l 521 -174 l 347 -174 l 347 0 z " + }, + "☃": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 521 1215 l 868 1215 l 868 1042 l 521 1042 l 521 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 347 1042 l 521 1042 l 521 694 l 868 694 l 868 1042 l 1042 1042 l 1042 868 l 1215 868 l 1215 694 l 1042 694 l 1042 521 l 694 521 l 694 174 l 521 174 l 521 521 l 347 521 l 347 1042 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 347 521 l 347 0 l 174 0 l 174 521 m 1042 521 l 1215 521 l 1215 0 l 1042 0 l 1042 521 m 347 0 l 1042 0 l 1042 -174 l 347 -174 l 347 0 z " + }, + "☄": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 174 694 l 521 694 l 521 521 l 174 521 l 174 694 m 1042 694 l 1215 694 l 1215 521 l 1042 521 l 1042 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 868 521 l 1042 521 l 1042 347 l 868 347 l 868 521 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 z " + }, + "★": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 868 1042 l 868 868 l 1215 868 l 1215 521 l 1042 521 l 1042 0 l 694 0 l 694 174 l 521 174 l 521 0 l 174 0 l 174 521 l 0 521 l 0 868 l 347 868 l 347 1042 l 521 1042 l 521 1215 z " + }, + "☆": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 868 l 347 868 l 347 694 l 174 694 l 174 521 l 0 521 l 0 868 m 868 868 l 1215 868 l 1215 521 l 1042 521 l 1042 694 l 868 694 l 868 868 m 174 521 l 347 521 l 347 174 l 521 174 l 521 0 l 174 0 l 174 521 m 868 521 l 1042 521 l 1042 0 l 694 0 l 694 174 l 868 174 l 868 521 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "☈": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 l 174 1042 l 174 0 l 0 0 l 0 1215 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 1042 521 l 1215 521 l 1215 0 l 694 0 l 694 174 l 868 174 l 868 347 l 1042 347 l 1042 521 z " + }, + "☔": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 521 1215 l 521 1042 l 868 1042 l 868 868 l 347 868 l 347 1215 m 868 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 0 694 l 174 694 l 174 521 l 1042 521 l 1042 694 l 1215 694 l 1215 347 l 694 347 l 694 0 l 521 0 l 521 347 l 0 347 l 0 694 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 347 0 l 521 0 l 521 -174 l 347 -174 l 347 0 z " + }, + "☠": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 1042 1215 l 1042 1042 l 1215 1042 l 1215 347 l 1042 347 l 1042 0 l 868 0 l 868 174 l 694 174 l 694 521 l 1042 521 l 1042 868 l 694 868 l 694 521 l 521 521 l 521 868 l 174 868 l 174 521 l 521 521 l 521 174 l 347 174 l 347 0 l 174 0 l 174 347 l 0 347 l 0 1042 l 174 1042 l 174 1215 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "☰": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 868 l 0 868 l 0 1042 m 0 694 l 868 694 l 868 521 l 0 521 l 0 694 m 0 347 l 868 347 l 868 174 l 0 174 l 0 347 z " + }, + "☱": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 347 1042 l 347 868 l 0 868 l 0 1042 m 521 1042 l 868 1042 l 868 868 l 521 868 l 521 1042 m 0 694 l 868 694 l 868 521 l 0 521 l 0 694 m 0 347 l 868 347 l 868 174 l 0 174 l 0 347 z " + }, + "☲": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 868 l 0 868 l 0 1042 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 868 694 l 868 521 l 521 521 l 521 694 m 0 347 l 868 347 l 868 174 l 0 174 l 0 347 z " + }, + "☳": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 347 1042 l 347 868 l 0 868 l 0 1042 m 521 1042 l 868 1042 l 868 868 l 521 868 l 521 1042 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 868 694 l 868 521 l 521 521 l 521 694 m 0 347 l 868 347 l 868 174 l 0 174 l 0 347 z " + }, + "☴": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 868 l 0 868 l 0 1042 m 0 694 l 868 694 l 868 521 l 0 521 l 0 694 m 0 347 l 347 347 l 347 174 l 0 174 l 0 347 m 521 347 l 868 347 l 868 174 l 521 174 l 521 347 z " + }, + "☵": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 347 1042 l 347 868 l 0 868 l 0 1042 m 521 1042 l 868 1042 l 868 868 l 521 868 l 521 1042 m 0 694 l 868 694 l 868 521 l 0 521 l 0 694 m 0 347 l 347 347 l 347 174 l 0 174 l 0 347 m 521 347 l 868 347 l 868 174 l 521 174 l 521 347 z " + }, + "☶": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 868 l 0 868 l 0 1042 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 868 694 l 868 521 l 521 521 l 521 694 m 0 347 l 347 347 l 347 174 l 0 174 l 0 347 m 521 347 l 868 347 l 868 174 l 521 174 l 521 347 z " + }, + "☷": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 347 1042 l 347 868 l 0 868 l 0 1042 m 521 1042 l 868 1042 l 868 868 l 521 868 l 521 1042 m 0 694 l 347 694 l 347 521 l 0 521 l 0 694 m 521 694 l 868 694 l 868 521 l 521 521 l 521 694 m 0 347 l 347 347 l 347 174 l 0 174 l 0 347 m 521 347 l 868 347 l 868 174 l 521 174 l 521 347 z " + }, + "☹": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 174 521 l 694 521 l 694 347 l 174 347 l 174 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "☺": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 347 1042 l 347 694 l 174 694 l 174 1042 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 174 347 l 694 347 l 694 174 l 174 174 l 174 347 z " + }, + "☻": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 1042 1215 l 1042 1042 l 1215 1042 l 1215 174 l 1042 174 l 1042 0 l 174 0 l 174 174 l 0 174 l 0 1042 l 174 1042 l 174 1215 m 347 1042 l 347 694 l 521 694 l 521 1042 l 347 1042 m 694 1042 l 694 694 l 868 694 l 868 1042 l 694 1042 m 174 521 l 174 347 l 347 347 l 347 521 l 174 521 m 868 521 l 868 347 l 1042 347 l 1042 521 l 868 521 m 347 347 l 347 174 l 868 174 l 868 347 l 347 347 z " + }, + "☽": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 694 1215 l 1042 1215 l 1042 1042 l 1215 1042 l 1215 868 l 1389 868 l 1389 174 l 1215 174 l 1215 0 l 1042 0 l 1042 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 521 l 174 521 l 174 347 l 347 347 l 347 174 l 868 174 l 868 347 l 1042 347 l 1042 868 l 868 868 l 868 1042 l 694 1042 l 694 1215 z " + }, + "♀": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1042 l 521 1042 l 521 521 l 347 521 l 347 347 l 521 347 l 521 174 l 347 174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 347 l 174 347 l 174 521 l 0 521 l 0 1042 m 174 868 l 174 694 l 347 694 l 347 868 l 174 868 z " + }, + "♂": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 868 1042 l 868 521 l 694 521 l 694 694 l 521 694 l 521 868 l 347 868 l 347 1042 m 0 694 l 521 694 l 521 174 l 0 174 l 0 694 m 174 521 l 174 347 l 347 347 l 347 521 l 174 521 z " + }, + "♠": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 868 694 l 868 347 l 521 347 l 521 174 l 694 174 l 694 0 l 174 0 l 174 174 l 347 174 l 347 347 l 0 347 l 0 694 l 174 694 l 174 868 l 347 868 l 347 1042 z " + }, + "♡": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "♢": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "♣": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 694 1042 l 694 694 l 868 694 l 868 347 l 521 347 l 521 174 l 694 174 l 694 0 l 174 0 l 174 174 l 347 174 l 347 347 l 0 347 l 0 694 l 174 694 l 174 1042 z " + }, + "♤": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 521 l 347 521 l 347 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 347 l 521 347 l 521 521 l 694 521 l 694 694 m 347 347 l 521 347 l 521 174 l 694 174 l 694 0 l 174 0 l 174 174 l 347 174 l 347 347 z " + }, + "♥": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 347 1042 l 347 868 l 521 868 l 521 1042 l 694 1042 l 694 868 l 868 868 l 868 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 0 347 l 0 868 l 174 868 l 174 1042 z " + }, + "♦": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 868 694 l 868 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 0 347 l 0 694 l 174 694 l 174 868 l 347 868 l 347 1042 z " + }, + "♧": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1042 l 694 1042 l 694 694 l 521 694 l 521 868 l 347 868 l 347 694 l 174 694 l 174 1042 m 0 694 l 174 694 l 174 521 l 347 521 l 347 347 l 0 347 l 0 694 m 694 694 l 868 694 l 868 347 l 521 347 l 521 521 l 694 521 l 694 694 m 347 347 l 521 347 l 521 174 l 694 174 l 694 0 l 174 0 l 174 174 l 347 174 l 347 347 z " + }, + "♩": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 1215 l 521 1215 l 521 0 l 0 0 l 0 347 l 347 347 l 347 1215 z " + }, + "♪": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 694 1215 l 694 1042 l 868 1042 l 868 694 l 694 694 l 694 868 l 521 868 l 521 0 l 0 0 l 0 347 l 347 347 l 347 1215 z " + }, + "♫": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 694 1215 l 1215 1215 l 1215 174 l 694 174 l 694 521 l 1042 521 l 1042 1042 l 694 1042 l 694 1215 m 347 1042 l 694 1042 l 694 868 l 521 868 l 521 0 l 0 0 l 0 347 l 347 347 l 347 1042 z " + }, + "♬": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 1215 1215 l 1215 0 l 694 0 l 694 347 l 1042 347 l 1042 694 l 521 694 l 521 0 l 0 0 l 0 347 l 347 347 l 347 1215 m 521 1042 l 521 868 l 1042 868 l 1042 1042 l 521 1042 z " + }, + "♭": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 694 l 521 694 l 521 174 l 347 174 l 347 521 l 174 521 l 174 174 l 347 174 l 347 0 l 0 0 l 0 1215 z " + }, + "♮": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 1215 l 174 1215 l 174 868 l 347 868 l 347 1042 l 521 1042 l 521 0 l 347 0 l 347 347 l 174 347 l 174 174 l 0 174 l 0 1215 m 174 694 l 174 521 l 347 521 l 347 694 l 174 694 z " + }, + "♯": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 694 1215 l 694 1042 l 868 1042 l 868 868 l 694 868 l 694 694 l 868 694 l 868 521 l 694 521 l 694 174 l 521 174 l 521 347 l 347 347 l 347 0 l 174 0 l 174 174 l 0 174 l 0 347 l 174 347 l 174 521 l 0 521 l 0 694 l 174 694 l 174 1042 l 347 1042 l 347 868 l 521 868 l 521 1215 m 347 694 l 347 521 l 521 521 l 521 694 l 347 694 z " + }, + "⚀": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 0 l 0 0 l 0 1215 m 521 694 l 521 521 l 694 521 l 694 694 l 521 694 z " + }, + "⚁": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 0 l 0 0 l 0 1215 m 174 1042 l 174 868 l 347 868 l 347 1042 l 174 1042 m 868 347 l 868 174 l 1042 174 l 1042 347 l 868 347 z " + }, + "⚂": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 0 l 0 0 l 0 1215 m 174 1042 l 174 868 l 347 868 l 347 1042 l 174 1042 m 521 694 l 521 521 l 694 521 l 694 694 l 521 694 m 868 347 l 868 174 l 1042 174 l 1042 347 l 868 347 z " + }, + "⚃": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 0 l 0 0 l 0 1215 m 174 1042 l 174 868 l 347 868 l 347 1042 l 174 1042 m 868 1042 l 868 868 l 1042 868 l 1042 1042 l 868 1042 m 174 347 l 174 174 l 347 174 l 347 347 l 174 347 m 868 347 l 868 174 l 1042 174 l 1042 347 l 868 347 z " + }, + "⚄": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 0 l 0 0 l 0 1215 m 174 1042 l 174 868 l 347 868 l 347 1042 l 174 1042 m 868 1042 l 868 868 l 1042 868 l 1042 1042 l 868 1042 m 521 694 l 521 521 l 694 521 l 694 694 l 521 694 m 174 347 l 174 174 l 347 174 l 347 347 l 174 347 m 868 347 l 868 174 l 1042 174 l 1042 347 l 868 347 z " + }, + "⚅": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 0 l 0 0 l 0 1215 m 174 1042 l 174 868 l 347 868 l 347 1042 l 174 1042 m 868 1042 l 868 868 l 1042 868 l 1042 1042 l 868 1042 m 174 694 l 174 521 l 347 521 l 347 694 l 174 694 m 868 694 l 868 521 l 1042 521 l 1042 694 l 868 694 m 174 347 l 174 174 l 347 174 l 347 347 l 174 347 m 868 347 l 868 174 l 1042 174 l 1042 347 l 868 347 z " + }, + "⚐": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 1042 l 174 1042 l 174 521 l 521 521 l 521 347 l 174 347 l 174 -174 l 0 -174 l 0 1215 m 868 1215 l 1215 1215 l 1215 347 l 868 347 l 868 521 l 1042 521 l 1042 1042 l 868 1042 l 868 1215 m 521 1042 l 868 1042 l 868 868 l 521 868 l 521 1042 m 521 347 l 868 347 l 868 174 l 521 174 l 521 347 z " + }, + "⚑": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 521 1215 l 521 1042 l 868 1042 l 868 1215 l 1215 1215 l 1215 347 l 868 347 l 868 174 l 521 174 l 521 347 l 174 347 l 174 -174 l 0 -174 l 0 1215 z " + }, + "⚓": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 521 868 l 694 868 l 694 694 l 868 694 l 868 521 l 694 521 l 694 0 l 868 0 l 868 -174 l 347 -174 l 347 0 l 521 0 l 521 521 l 347 521 l 347 694 l 521 694 l 521 868 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 1042 521 l 1215 521 l 1215 174 l 1042 174 l 1042 521 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 z " + }, + "⚔": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 1042 1215 l 1215 1215 l 1215 1042 l 1042 1042 l 1042 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 694 521 l 868 521 l 868 347 l 694 347 l 694 521 m 1042 521 l 1215 521 l 1215 347 l 1042 347 l 1042 521 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 1042 174 l 1215 174 l 1215 0 l 1042 0 l 1042 174 z " + }, + "⚗": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 694 1215 l 1215 1215 l 1215 694 l 1042 694 l 1042 521 l 868 521 l 868 868 l 1042 868 l 1042 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 347 l 1042 347 l 1042 521 l 1215 521 l 1215 174 l 1042 174 l 1042 0 l 868 0 l 868 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 0 174 l 0 521 z " + }, + "⚡": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 521 1215 l 694 1215 l 694 1042 l 521 1042 l 521 1215 m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 174 868 l 347 868 l 347 694 l 868 694 l 868 521 l 694 521 l 694 347 l 521 347 l 521 521 l 0 521 l 0 694 l 174 694 l 174 868 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "⚥": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 868 1215 l 868 694 l 694 694 l 694 868 l 521 868 l 521 1042 l 347 1042 l 347 1215 m 0 868 l 521 868 l 521 347 l 347 347 l 347 174 l 521 174 l 521 0 l 347 0 l 347 -174 l 174 -174 l 174 0 l 0 0 l 0 174 l 174 174 l 174 347 l 0 347 l 0 868 m 174 694 l 174 521 l 347 521 l 347 694 l 174 694 z " + }, + "⛄": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 694 l 694 694 l 694 1042 l 868 1042 l 868 521 l 521 521 l 521 174 l 347 174 l 347 521 l 174 521 l 174 1042 m 0 521 l 174 521 l 174 0 l 0 0 l 0 521 m 868 521 l 1042 521 l 1042 0 l 868 0 l 868 521 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "⛈": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 694 1215 l 1042 1215 l 1042 1042 l 694 1042 l 694 1215 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 1042 1042 l 1215 1042 l 1215 694 l 1042 694 l 1042 1042 m 174 868 l 521 868 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 347 l 0 347 l 0 694 m 1215 694 l 1389 694 l 1389 347 l 1215 347 l 1215 694 m 694 521 l 868 521 l 868 347 l 1215 347 l 1215 174 l 1042 174 l 1042 0 l 868 0 l 868 174 l 174 174 l 174 347 l 694 347 l 694 521 m 694 0 l 868 0 l 868 -174 l 694 -174 l 694 0 z " + }, + "⛏": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 347 1215 l 1042 1215 l 1042 1042 l 1215 1042 l 1215 868 l 1389 868 l 1389 174 l 1215 174 l 1215 694 l 868 694 l 868 1042 l 347 1042 l 347 1215 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 z " + }, + "⛨": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 347 l 1042 347 l 1042 1042 l 174 1042 l 174 347 l 0 347 l 0 1215 m 521 868 l 694 868 l 694 694 l 868 694 l 868 521 l 694 521 l 694 347 l 521 347 l 521 521 l 347 521 l 347 694 l 521 694 l 521 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + }, + "✂": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 1042 1215 l 1042 1042 l 868 1042 l 868 868 l 694 868 l 694 694 l 347 694 l 347 347 l 174 347 l 174 174 l 347 174 l 347 347 l 694 347 l 694 694 l 868 694 l 868 868 l 1042 868 l 1042 1042 l 1215 1042 l 1215 521 l 1042 521 l 1042 347 l 868 347 l 868 174 l 521 174 l 521 0 l 0 0 l 0 521 l 174 521 l 174 868 l 347 868 l 347 1042 l 521 1042 l 521 1215 z " + }, + "✉": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1042 l 1215 1042 l 1215 0 l 0 0 l 0 1042 m 347 868 l 347 694 l 521 694 l 521 521 l 694 521 l 694 694 l 868 694 l 868 868 l 347 868 m 174 694 l 174 174 l 1042 174 l 1042 694 l 868 694 l 868 521 l 694 521 l 694 347 l 521 347 l 521 521 l 347 521 l 347 694 l 174 694 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 z " + }, + "✎": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 521 1042 l 694 1042 l 694 868 l 521 868 l 521 1042 m 0 868 l 174 868 l 174 694 l 0 694 l 0 868 m 347 868 l 521 868 l 521 694 l 347 694 l 347 868 m 694 868 l 868 868 l 868 694 l 694 694 l 694 868 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 868 694 l 1042 694 l 1042 521 l 868 521 l 868 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 1042 521 l 1215 521 l 1215 0 l 694 0 l 694 174 l 868 174 l 868 347 l 1042 347 l 1042 521 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 z " + }, + "✔": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 868 l 868 868 l 868 521 l 694 521 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 0 347 l 0 694 l 174 694 l 174 521 l 347 521 l 347 347 l 521 347 l 521 694 l 694 694 l 694 1042 l 868 1042 l 868 1215 z " + }, + "✘": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 868 l 868 868 l 868 694 l 694 694 l 694 521 l 868 521 l 868 174 l 694 174 l 694 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 1042 l 347 1042 l 347 868 l 694 868 l 694 1042 l 868 1042 l 868 1215 z " + }, + "❄": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 521 1215 l 521 1042 l 347 1042 l 347 1215 m 694 1215 l 868 1215 l 868 1042 l 694 1042 l 694 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 521 1042 l 694 1042 l 694 694 l 521 694 l 521 1042 m 1042 1042 l 1215 1042 l 1215 868 l 1042 868 l 1042 1042 m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 347 694 l 521 694 l 521 521 l 347 521 l 347 694 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 174 l 521 174 l 521 521 m 868 521 l 1042 521 l 1042 347 l 868 347 l 868 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 1042 347 l 1215 347 l 1215 174 l 1042 174 l 1042 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "❌": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 174 1215 l 174 1042 l 347 1042 l 347 868 l 694 868 l 694 1042 l 868 1042 l 868 1215 l 1042 1215 l 1042 868 l 868 868 l 868 694 l 694 694 l 694 521 l 868 521 l 868 347 l 1042 347 l 1042 0 l 868 0 l 868 174 l 694 174 l 694 347 l 347 347 l 347 174 l 174 174 l 174 0 l 0 0 l 0 347 l 174 347 l 174 521 l 347 521 l 347 694 l 174 694 l 174 868 l 0 868 l 0 1215 z " + }, + "❣": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 347 1215 l 347 1042 l 521 1042 l 521 1215 l 694 1215 l 694 1042 l 868 1042 l 868 694 l 694 694 l 694 521 l 521 521 l 521 347 l 347 347 l 347 521 l 174 521 l 174 694 l 0 694 l 0 1042 l 174 1042 l 174 1215 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "❤": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 174 1215 l 521 1215 l 521 1042 l 694 1042 l 694 1215 l 1042 1215 l 1042 1042 l 1215 1042 l 1215 521 l 1042 521 l 1042 347 l 868 347 l 868 174 l 694 174 l 694 0 l 521 0 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 l 0 521 l 0 1042 l 174 1042 l 174 1215 z " + }, + "⟘": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 174 l 868 174 l 868 0 l 0 0 l 0 174 l 347 174 l 347 1215 z " + }, + "⥝": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 347 l 694 347 l 694 174 l 521 174 l 521 0 l 347 0 l 347 1042 l 0 1042 l 0 1215 z " + }, + "⧈": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 1215 1215 l 1215 0 l 0 0 l 0 1215 m 174 1042 l 174 174 l 1042 174 l 1042 1042 l 174 1042 m 347 868 l 868 868 l 868 347 l 347 347 l 347 868 m 521 694 l 521 521 l 694 521 l 694 694 l 521 694 z " + }, + "⭐": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 868 l 1215 868 l 1215 694 l 1042 694 l 1042 521 l 868 521 l 868 347 l 1042 347 l 1042 0 l 868 0 l 868 174 l 694 174 l 694 347 l 521 347 l 521 174 l 347 174 l 347 0 l 174 0 l 174 347 l 347 347 l 347 521 l 174 521 l 174 694 l 0 694 l 0 868 l 521 868 l 521 1215 z " + }, + "⭘": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 868 1042 l 1042 1042 l 1042 868 l 868 868 l 868 1042 m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 1042 868 l 1215 868 l 1215 347 l 1042 347 l 1042 868 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 868 347 l 1042 347 l 1042 174 l 868 174 l 868 347 m 347 174 l 868 174 l 868 0 l 347 0 l 347 174 z " + }, + "⯪": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 868 1042 l 868 868 l 694 868 l 694 174 l 521 174 l 521 0 l 174 0 l 174 521 l 0 521 l 0 868 l 347 868 l 347 1042 l 521 1042 l 521 1215 m 868 868 l 1215 868 l 1215 521 l 1042 521 l 1042 694 l 868 694 l 868 868 m 868 521 l 1042 521 l 1042 0 l 694 0 l 694 174 l 868 174 l 868 521 z " + }, + "⯫": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 868 1042 l 868 868 l 1215 868 l 1215 521 l 1042 521 l 1042 0 l 694 0 l 694 174 l 521 174 l 521 868 l 347 868 l 347 1042 l 521 1042 l 521 1215 m 0 868 l 347 868 l 347 694 l 174 694 l 174 521 l 0 521 l 0 868 m 174 521 l 347 521 l 347 174 l 521 174 l 521 0 l 174 0 l 174 521 z " + }, + "ⱥ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 868 l 694 868 l 694 694 l 868 694 l 868 0 l 174 0 l 174 174 l 0 174 l 0 347 l 174 347 l 174 521 l 521 521 l 521 694 l 174 694 l 174 868 m 347 347 l 347 174 l 694 174 l 694 347 l 347 347 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 z " + }, + "ⱦ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 174 l 174 174 l 174 347 l 347 347 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "Ɑ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 521 1215 l 521 1042 l 174 1042 l 174 1215 m 694 1215 l 868 1215 l 868 0 l 174 0 l 174 174 l 694 174 l 694 868 l 521 868 l 521 1042 l 694 1042 l 694 1215 m 0 1042 l 174 1042 l 174 174 l 0 174 l 0 1042 z " + }, + "Ɐ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 521 l 694 521 l 694 1215 l 868 1215 l 868 174 l 694 174 l 694 347 l 174 347 l 174 174 l 0 174 l 0 1215 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ⱱ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 1042 868 l 1042 694 l 868 694 l 868 347 l 694 347 l 694 868 m 1042 694 l 1215 694 l 1215 521 l 1042 521 l 1042 694 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "ⴀ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 174 l 868 174 l 868 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "ⴁ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 174 l 174 174 l 174 347 l 694 347 l 694 868 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "ⴂ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 174 l 0 174 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "ⴃ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 521 1042 l 521 868 l 694 868 l 694 694 l 174 694 l 174 868 l 347 868 l 347 1042 l 174 1042 l 174 1215 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ⴄ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 -174 l 694 -174 l 694 694 z " + }, + "ⴅ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 -174 l 347 -174 l 347 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴆ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 1215 l 347 1215 l 347 868 l 868 868 l 868 694 l 347 694 l 347 174 l 868 174 l 868 0 l 174 0 l 174 1042 l 0 1042 l 0 1215 m 868 694 l 1042 694 l 1042 174 l 868 174 l 868 694 z " + }, + "ⴇ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 174 694 l 174 174 l 347 174 l 347 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 174 l 347 174 l 347 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴈ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 347 l 0 347 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴉ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 694 1042 l 694 868 l 174 868 l 174 347 l 0 347 l 0 1215 m 694 868 l 868 868 l 868 -174 l 694 -174 l 694 174 l 174 174 l 174 347 l 694 347 l 694 868 z " + }, + "ⴊ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 174 l 347 174 l 347 694 m 694 694 l 868 694 l 868 0 l 521 0 l 521 174 l 694 174 l 694 694 z " + }, + "ⴋ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 0 1042 l 0 1215 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 694 l 174 694 l 174 868 l 694 868 l 694 1042 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ⴌ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1042 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴍ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 347 868 l 521 868 l 521 174 l 347 174 l 347 868 m 694 868 l 868 868 l 868 0 l 521 0 l 521 174 l 694 174 l 694 868 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ⴎ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 347 868 l 347 174 l 174 174 l 174 694 l 0 694 l 0 868 m 868 868 l 1042 868 l 1042 0 l 347 0 l 347 174 l 868 174 l 868 868 z " + }, + "ⴏ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 868 1215 l 1042 1215 l 1042 -174 l 868 -174 l 868 174 l 347 174 l 347 347 l 868 347 l 868 1215 m 0 868 l 347 868 l 347 347 l 174 347 l 174 694 l 0 694 l 0 868 z " + }, + "ⴐ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 0 l 174 0 l 174 174 l 347 174 l 347 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴑ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 174 l 0 174 l 0 1215 m 694 868 l 868 868 l 868 0 l 174 0 l 174 174 l 694 174 l 694 868 z " + }, + "ⴒ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 694 l 347 694 l 347 521 l 174 521 l 174 347 l 694 347 l 694 174 l 174 174 l 174 0 l 0 0 l 0 868 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "ⴓ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 -174 l 694 -174 l 694 0 l 521 0 l 521 174 l 694 174 l 694 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 347 868 l 521 868 l 521 174 l 347 174 l 347 868 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 z " + }, + "ⴔ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 347 868 l 347 694 l 174 694 l 174 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 347 694 l 521 694 l 521 174 l 694 174 l 694 0 l 521 0 l 521 -174 l 347 -174 l 347 0 l 174 0 l 174 174 l 347 174 l 347 694 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 z " + }, + "ⴕ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 868 868 l 868 694 l 521 694 l 521 -174 l 347 -174 l 347 694 l 0 694 l 0 868 l 347 868 l 347 1215 z " + }, + "ⴖ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴗ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 694 868 l 868 868 l 868 -174 l 694 -174 l 694 0 l 174 0 l 174 174 l 694 174 l 694 868 z " + }, + "ⴘ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 0 l 694 0 l 694 174 l 174 174 l 174 347 l 694 347 l 694 868 m 0 0 l 694 0 l 694 -174 l 0 -174 l 0 0 z " + }, + "ⴙ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 -174 l 0 -174 l 0 1215 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴚ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "ⴛ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 868 l 694 868 l 694 694 l 521 694 l 521 0 l 174 0 l 174 174 l 347 174 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴜ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 174 694 l 174 -174 l 0 -174 l 0 868 m 521 868 l 694 868 l 694 694 l 521 694 l 521 868 m 347 694 l 521 694 l 521 0 l 347 0 l 347 694 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "ⴝ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 347 l 868 347 l 868 174 l 0 174 l 0 868 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "ⴞ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 694 347 l 694 174 l 174 174 l 174 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 m 174 0 l 868 0 l 868 -174 l 174 -174 l 174 0 z " + }, + "ⴟ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 521 l 694 521 l 694 694 l 174 694 l 174 521 l 0 521 l 0 868 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 521 521 l 694 521 l 694 347 l 521 347 l 521 521 m 347 347 l 521 347 l 521 174 l 347 174 l 347 347 m 174 174 l 347 174 l 347 0 l 174 0 l 174 174 m 521 174 l 868 174 l 868 0 l 521 0 l 521 174 m 0 0 l 174 0 l 174 -174 l 0 -174 l 0 0 z " + }, + "ⴠ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 347 868 l 347 694 l 174 694 l 174 0 l 0 0 l 0 868 m 694 868 l 868 868 l 868 0 l 521 0 l 521 174 l 694 174 l 694 868 m 347 694 l 521 694 l 521 174 l 347 174 l 347 694 z " + }, + "ⴡ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 694 l 174 694 l 174 -174 l 0 -174 l 0 1215 m 694 694 l 868 694 l 868 521 l 694 521 l 694 694 z " + }, + "ⴢ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 521 l 174 521 l 174 174 l 0 174 l 0 521 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ⴣ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 694 1215 l 868 1215 l 868 -174 l 694 -174 l 694 0 l 174 0 l 174 174 l 694 174 l 694 1215 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 z " + }, + "ⴤ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 174 868 l 174 347 l 0 347 l 0 868 m 694 868 l 868 868 l 868 347 l 694 347 l 694 868 m 174 347 l 694 347 l 694 174 l 521 174 l 521 -174 l 347 -174 l 347 174 l 174 174 l 174 347 z " + }, + "ⴥ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 868 1215 l 868 1042 l 521 1042 l 521 694 l 694 694 l 694 521 l 521 521 l 521 0 l 174 0 l 174 174 l 347 174 l 347 694 l 174 694 l 174 868 l 347 868 l 347 1215 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 521 l 868 521 l 868 0 l 694 0 l 694 521 z " + }, + "⸘": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1042 l 521 1042 l 521 868 l 347 868 l 347 1042 m 347 694 l 521 694 l 521 0 l 694 0 l 694 -174 l 174 -174 l 174 0 l 347 0 l 347 347 l 174 347 l 174 521 l 347 521 l 347 694 m 0 347 l 174 347 l 174 0 l 0 0 l 0 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "⸮": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 694 l 0 694 l 0 1042 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 347 174 l 521 174 l 521 0 l 347 0 l 347 174 z " + }, + "⸵": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 1215 l 174 1215 l 174 868 l 0 868 l 0 1215 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "⸸": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 521 l 868 521 l 868 347 l 521 347 l 521 0 l 347 0 l 347 347 l 0 347 l 0 521 l 347 521 l 347 1215 z " + }, + "⹁": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 174 l 174 174 l 174 -174 l 0 -174 l 0 174 z " + }, + "⹋": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 1042 l 868 1042 l 868 868 l 521 868 l 521 694 l 868 694 l 868 521 l 521 521 l 521 347 l 868 347 l 868 174 l 521 174 l 521 0 l 347 0 l 347 174 l 0 174 l 0 347 l 347 347 l 347 521 l 0 521 l 0 694 l 347 694 l 347 868 l 0 868 l 0 1042 l 347 1042 l 347 1215 z " + }, + "〒": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1042 l 868 1042 l 868 868 l 0 868 l 0 1042 m 0 694 l 868 694 l 868 521 l 521 521 l 521 0 l 347 0 l 347 521 l 0 521 l 0 694 z " + }, + "ㄥ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 521 1215 l 521 694 l 347 694 l 347 1215 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 0 521 l 174 521 l 174 174 l 694 174 l 694 347 l 868 347 l 868 0 l 0 0 l 0 521 z " + }, + "Ꜧ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 868 l 694 868 l 694 1215 l 868 1215 l 868 0 l 694 0 l 694 694 l 174 694 l 174 0 l 0 0 l 0 1215 m 347 0 l 694 0 l 694 -174 l 347 -174 l 347 0 z " + }, + "ꜧ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 347 694 l 347 521 l 174 521 l 174 0 l 0 0 l 0 1215 m 347 868 l 694 868 l 694 694 l 347 694 l 347 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 m 347 0 l 694 0 l 694 -174 l 347 -174 l 347 0 z " + }, + "Ꜩ": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 0 1215 l 868 1215 l 868 1042 l 521 1042 l 521 868 l 1215 868 l 1215 521 l 1042 521 l 1042 694 l 521 694 l 521 0 l 347 0 l 347 1042 l 0 1042 l 0 1215 m 694 521 l 1042 521 l 1042 347 l 694 347 l 694 521 m 1042 347 l 1215 347 l 1215 0 l 1042 0 l 1042 347 m 694 0 l 1042 0 l 1042 -174 l 694 -174 l 694 0 z " + }, + "ꜩ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 347 1215 l 347 868 l 1042 868 l 1042 521 l 868 521 l 868 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1215 m 521 521 l 868 521 l 868 347 l 521 347 l 521 521 m 868 347 l 1042 347 l 1042 0 l 868 0 l 868 347 m 521 0 l 868 0 l 868 -174 l 521 -174 l 521 0 z " + }, + "ꜰ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 868 868 l 868 694 l 174 694 l 174 521 l 521 521 l 521 347 l 174 347 l 174 0 l 0 0 l 0 868 z " + }, + "ꜱ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 174 521 l 694 521 l 694 347 l 174 347 l 174 521 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "ꜹ": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 1215 868 l 1389 868 l 1389 347 l 1215 347 l 1215 868 m 694 694 l 868 694 l 868 174 l 1042 174 l 1042 0 l 174 0 l 174 174 l 694 174 l 694 347 l 174 347 l 174 521 l 694 521 l 694 694 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 1042 347 l 1215 347 l 1215 174 l 1042 174 l 1042 347 z " + }, + "ꜻ": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 1215 868 l 1389 868 l 1389 347 l 1215 347 l 1215 174 l 1042 174 l 1042 347 l 868 347 l 868 174 l 1042 174 l 1042 0 l 174 0 l 174 174 l 694 174 l 694 347 l 174 347 l 174 521 l 694 521 l 694 694 l 868 694 l 868 521 l 1215 521 l 1215 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "Ꝛ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 694 1215 l 694 1042 l 0 1042 l 0 1215 m 694 1042 l 868 1042 l 868 868 l 694 868 l 694 1042 m 174 868 l 694 868 l 694 694 l 347 694 l 347 521 l 174 521 l 174 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "ꝛ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 521 868 l 521 694 l 0 694 l 0 868 m 521 694 l 694 694 l 694 521 l 521 521 l 521 694 m 174 521 l 521 521 l 521 174 l 347 174 l 347 347 l 174 347 l 174 521 m 521 174 l 694 174 l 694 0 l 521 0 l 521 174 z " + }, + "Ꝺ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 174 868 l 174 1042 m 694 1042 l 868 1042 l 868 174 l 694 174 l 694 1042 m 0 868 l 174 868 l 174 174 l 0 174 l 0 868 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "Ꞁ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 868 1215 l 868 0 l 694 0 l 694 1042 l 0 1042 l 0 1215 z " + }, + "ꞁ": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 347 868 l 347 -174 l 174 -174 l 174 868 z " + }, + "Ꞩ": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 174 1215 l 868 1215 l 868 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 868 l 0 868 l 0 1042 m 174 868 l 694 868 l 694 694 l 868 694 l 868 174 l 694 174 l 694 521 l 521 521 l 521 694 l 174 694 l 174 868 m 868 868 l 1042 868 l 1042 694 l 868 694 l 868 868 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 m 174 174 l 694 174 l 694 0 l 174 0 l 174 174 z " + }, + "ꞩ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 868 868 l 868 694 l 694 694 l 694 347 l 521 347 l 521 174 l 694 174 l 694 0 l 0 0 l 0 174 l 347 174 l 347 347 l 174 347 l 174 521 l 521 521 l 521 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 521 l 0 521 l 0 694 m 694 347 l 868 347 l 868 174 l 694 174 l 694 347 z " + }, + "ꞯ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 868 l 694 868 l 694 694 l 174 694 l 174 868 m 0 694 l 174 694 l 174 174 l 0 174 l 0 694 m 694 694 l 868 694 l 868 347 l 694 347 l 694 694 m 521 347 l 694 347 l 694 174 l 521 174 l 521 347 m 174 174 l 521 174 l 521 0 l 174 0 l 174 174 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "Ʞ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 694 l 0 694 l 0 1215 m 694 1215 l 868 1215 l 868 0 l 694 0 l 694 347 l 347 347 l 347 521 l 694 521 l 694 1215 m 174 694 l 347 694 l 347 521 l 174 521 l 174 694 m 174 347 l 347 347 l 347 174 l 174 174 l 174 347 m 0 174 l 174 174 l 174 0 l 0 0 l 0 174 z " + }, + "ff": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 868 1215 l 1215 1215 l 1215 1042 l 868 1042 l 868 1215 m 174 1042 l 347 1042 l 347 868 l 694 868 l 694 1042 l 868 1042 l 868 868 l 1215 868 l 1215 694 l 868 694 l 868 0 l 694 0 l 694 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 z " + }, + "fi": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 1215 l 868 1215 l 868 1042 l 347 1042 l 347 1215 m 174 1042 l 347 1042 l 347 868 l 868 868 l 868 0 l 694 0 l 694 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 z " + }, + "fl": { + "ha": 1215, + "x_min": 0, + "x_max": 1042, + "o": "m 347 1215 l 868 1215 l 868 174 l 694 174 l 694 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 l 347 1042 l 347 868 l 694 868 l 694 1042 l 347 1042 l 347 1215 m 868 174 l 1042 174 l 1042 0 l 868 0 l 868 174 z " + }, + "ffi": { + "ha": 1563, + "x_min": 0, + "x_max": 1389, + "o": "m 347 1215 l 694 1215 l 694 1042 l 347 1042 l 347 1215 m 868 1215 l 1389 1215 l 1389 1042 l 868 1042 l 868 1215 m 174 1042 l 347 1042 l 347 868 l 694 868 l 694 1042 l 868 1042 l 868 868 l 1389 868 l 1389 0 l 1215 0 l 1215 694 l 868 694 l 868 0 l 694 0 l 694 694 l 347 694 l 347 0 l 174 0 l 174 694 l 0 694 l 0 868 l 174 868 l 174 1042 z " + }, + "ſt": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 868 l 868 868 l 868 694 l 694 694 l 694 174 l 521 174 l 521 694 l 347 694 l 347 868 l 521 868 l 521 1042 l 174 1042 l 174 1215 m 0 1042 l 174 1042 l 174 0 l 0 0 l 0 1042 m 694 174 l 868 174 l 868 0 l 694 0 l 694 174 z " + }, + "יִ": { + "ha": 347, + "x_min": 0, + "x_max": 174, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 0 347 l 174 347 l 174 174 l 0 174 l 0 347 z " + }, + "ײַ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 0 868 l 174 868 l 174 521 l 0 521 l 0 868 m 347 868 l 521 868 l 521 521 l 347 521 l 347 868 m 0 347 l 521 347 l 521 174 l 0 174 l 0 347 z " + }, + "שׂ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 174 1215 l 174 1042 l 0 1042 l 0 1215 m 0 868 l 174 868 l 174 521 l 347 521 l 347 347 l 174 347 l 174 174 l 0 174 l 0 868 m 347 868 l 521 868 l 521 521 l 347 521 l 347 868 m 694 868 l 868 868 l 868 0 l 174 0 l 174 174 l 694 174 l 694 868 z " + }, + "בּ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 521 868 l 521 694 l 0 694 l 0 868 m 521 694 l 694 694 l 694 174 l 868 174 l 868 0 l 0 0 l 0 174 l 521 174 l 521 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 z " + }, + "וּ": { + "ha": 694, + "x_min": 0, + "x_max": 521, + "o": "m 347 868 l 521 868 l 521 0 l 347 0 l 347 868 m 0 521 l 174 521 l 174 347 l 0 347 l 0 521 z " + }, + "כּ": { + "ha": 868, + "x_min": 0, + "x_max": 694, + "o": "m 0 868 l 521 868 l 521 694 l 0 694 l 0 868 m 521 694 l 694 694 l 694 174 l 521 174 l 521 694 m 174 521 l 347 521 l 347 347 l 174 347 l 174 521 m 0 174 l 521 174 l 521 0 l 0 0 l 0 174 z " + }, + "פּ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 174 694 l 174 347 l 0 347 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 347 521 l 521 521 l 521 347 l 347 347 l 347 521 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "תּ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 868 l 694 868 l 694 694 l 347 694 l 347 521 l 521 521 l 521 347 l 347 347 l 347 0 l 0 0 l 0 174 l 174 174 l 174 694 l 0 694 l 0 868 m 694 694 l 868 694 l 868 0 l 694 0 l 694 694 z " + }, + "וֹ": { + "ha": 521, + "x_min": 0, + "x_max": 347, + "o": "m 174 1215 l 347 1215 l 347 1042 l 174 1042 l 174 1215 m 0 868 l 174 868 l 174 0 l 0 0 l 0 868 z " + }, + "בֿ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 0 1215 l 521 1215 l 521 1042 l 0 1042 l 0 1215 m 0 868 l 521 868 l 521 694 l 0 694 l 0 868 m 521 694 l 694 694 l 694 174 l 868 174 l 868 0 l 0 0 l 0 174 l 521 174 l 521 694 z " + }, + "פֿ": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 174 1215 l 694 1215 l 694 1042 l 174 1042 l 174 1215 m 0 868 l 694 868 l 694 694 l 174 694 l 174 521 l 521 521 l 521 347 l 0 347 l 0 868 m 694 694 l 868 694 l 868 174 l 694 174 l 694 694 m 0 174 l 694 174 l 694 0 l 0 0 l 0 174 z " + }, + "+": { + "ha": 1042, + "x_min": 0, + "x_max": 868, + "o": "m 347 868 l 521 868 l 521 521 l 868 521 l 868 347 l 521 347 l 521 0 l 347 0 l 347 347 l 0 347 l 0 521 l 347 521 l 347 868 z " + }, + "�": { + "ha": 1389, + "x_min": 0, + "x_max": 1215, + "o": "m 521 1215 l 694 1215 l 694 1042 l 868 1042 l 868 868 l 347 868 l 347 1042 l 521 1042 l 521 1215 m 174 868 l 347 868 l 347 694 l 694 694 l 694 521 l 521 521 l 521 347 l 694 347 l 694 521 l 868 521 l 868 868 l 1042 868 l 1042 694 l 1215 694 l 1215 347 l 1042 347 l 1042 174 l 868 174 l 868 0 l 694 0 l 694 174 l 521 174 l 521 0 l 347 0 l 347 174 l 174 174 l 174 347 l 0 347 l 0 694 l 174 694 l 174 868 m 521 0 l 694 0 l 694 -174 l 521 -174 l 521 0 z " + } + }, + "familyName": "MinecraftFull", + "ascender": 1215, + "descender": -174, + "underlinePosition": 138, + "underlineThickness": 69, + "boundingBox": { "yMin": -174, "xMin": 0, "yMax": 1215, "xMax": 1389 }, + "resolution": 1000, + "original_font_information": { + "format": 0, + "copyright": "(c)", + "fontFamily": "MinecraftFull", + "fontSubfamily": "Regular", + "uniqueID": "MinecraftFull", + "fullName": "Minecraft Full", + "version": "Version 1.0", + "postScriptName": "MinecraftFull", + "designer": "Mojang Studios", + "licence": "All rights reserved", + "sampleText": "Hello!" + }, + "cssFontWeight": "normal", + "cssFontStyle": "normal" +} diff --git a/src/assets/animated_java_icon_no_background.svg b/src/assets/animated_java_icon_no_background.svg new file mode 100644 index 00000000..5a67fbb1 --- /dev/null +++ b/src/assets/animated_java_icon_no_background.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/animated_paper_icon.svg b/src/assets/animated_paper_icon.svg new file mode 100644 index 00000000..4c707775 --- /dev/null +++ b/src/assets/animated_paper_icon.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/armor_stand_running.gif b/src/assets/armor_stand_running.gif new file mode 100644 index 00000000..e29b3a2f Binary files /dev/null and b/src/assets/armor_stand_running.gif differ diff --git a/src/assets/armor_stand_wave.gif b/src/assets/armor_stand_wave.gif new file mode 100644 index 00000000..42026ed3 Binary files /dev/null and b/src/assets/armor_stand_wave.gif differ diff --git a/src/assets/missing_character.png b/src/assets/missing_character.png new file mode 100644 index 00000000..e7a4d54e Binary files /dev/null and b/src/assets/missing_character.png differ diff --git a/src/assets/missing_texture.png b/src/assets/missing_texture.png new file mode 100644 index 00000000..074122b6 Binary files /dev/null and b/src/assets/missing_texture.png differ diff --git a/src/assets/search.png b/src/assets/search.png new file mode 100644 index 00000000..29870c88 Binary files /dev/null and b/src/assets/search.png differ diff --git a/src/assets/text.json b/src/assets/text.json new file mode 100644 index 00000000..6dc2647c --- /dev/null +++ b/src/assets/text.json @@ -0,0 +1,26615 @@ +[ + { + "color": "#000000", + "italic": false, + "text": "\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████\n███████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████\n██████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████\n█████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████\n████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████\n██████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████\n█████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████████\n███████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████████\n██████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████████\n████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████████████\n███████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████████\n██████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████████████\n████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████████\n███████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████████\n██████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "██████████████████████████████\n█████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "█████████████████████████████\n████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "████████████████████████████\n███████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { + "color": "#000000", + "text": "███████████████████████████\n█████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████\n████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████\n███████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████\n██████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████\n█████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████\n████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████\n███████████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████\n███████████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████\n██████████████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████\n█████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████\n███████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████\n███████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████\n██████████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████\n█████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████\n████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████\n████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████\n███████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████\n██████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████\n█████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████\n███████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████\n██████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███\n█████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██\n████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█\n██████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n" + }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n" + }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n" + }, + { "color": "#000000", "text": "██" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████" + }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#FFFFFF", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#FFFFFF", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#FFFFFF", + "text": "████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████████████████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "███████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "████" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { + "color": "#000000", + "text": "████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#FFFFFF", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#FFFFFF", "text": "██" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { + "color": "#000000", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { + "color": "#000000", + "text": "██████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { + "color": "#000000", + "text": "███████████████████████████████████████████████████████████████████████" + }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "███████████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████████" }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "█████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███████████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "████████████████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "█████████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "███████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████████████████████" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "██████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "████████████" }, + { "color": "#000000", "text": "██████████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "██████" }, + { "color": "#0E0E0E", "text": "███████████████" }, + { "color": "#000000", "text": "████████████████████████████████████████████" }, + { "color": "#0E0E0E", "text": "█████" }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "██" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████" }, + { "color": "#000000", "text": "███████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████████" }, + { "color": "#0E0E0E", "text": "██████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "███████████████████████████████████████████" }, + { "color": "#000000", "text": "███" }, + { "color": "#0E0E0E", "text": "█████████████████████" }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { "color": "#0E0E0E", "text": "███" }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "██████████████████████████████████████████████████████████" }, + { "color": "#000000", "text": "█████████████" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████" }, + { "color": "#0E0E0E", "text": "█████████████████████████████████████████████████" }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████" }, + { "color": "#0E0E0E", "text": "████████████████████" }, + { "color": "#000000", "text": "███████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "██████████████" }, + { "color": "#0E0E0E", "text": "███████" }, + { "color": "#000000", "text": "█████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████████████████████████████████████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████████████████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███████████████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "█████" }, + { + "color": "#0E0E0E", + "text": "█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "████" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + }, + { "color": "#000000", "text": "███" }, + { + "color": "#0E0E0E", + "text": "████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████\n████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████" + } +] diff --git a/src/assets/text_display_loading.webp b/src/assets/text_display_loading.webp new file mode 100644 index 00000000..d1c13f47 Binary files /dev/null and b/src/assets/text_display_loading.webp differ diff --git a/src/assets/transparent.png b/src/assets/transparent.png new file mode 100644 index 00000000..dfe1472a Binary files /dev/null and b/src/assets/transparent.png differ diff --git a/src/assets/vanillaAssetOverrides/animated_java/textures/steve.png b/src/assets/vanillaAssetOverrides/animated_java/textures/steve.png new file mode 100644 index 00000000..784d21cf Binary files /dev/null and b/src/assets/vanillaAssetOverrides/animated_java/textures/steve.png differ diff --git a/src/assets/vanillaAssetOverrides/index.json b/src/assets/vanillaAssetOverrides/index.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/index.json @@ -0,0 +1 @@ +{} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/black_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/black_bed.json new file mode 100644 index 00000000..462eb463 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/black_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/black_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/black_shulker_box.json new file mode 100644 index 00000000..4ac7e959 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/black_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/blue_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/blue_bed.json new file mode 100644 index 00000000..9fd7a60e --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/blue_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/blue_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/blue_shulker_box.json new file mode 100644 index 00000000..9fbb5eb4 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/blue_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/brown_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/brown_bed.json new file mode 100644 index 00000000..c6ae2896 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/brown_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/brown_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/brown_shulker_box.json new file mode 100644 index 00000000..50c0e4bd --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/brown_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/chest.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/chest.json new file mode 100644 index 00000000..9889d2bd --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chest" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/conduit.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/conduit.json new file mode 100644 index 00000000..509c7e8e --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/conduit.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/conduit" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/cyan_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/cyan_bed.json new file mode 100644 index 00000000..28f99dcf --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/cyan_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/cyan_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/cyan_shulker_box.json new file mode 100644 index 00000000..1e0167f9 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/cyan_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/ender_chest.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/ender_chest.json new file mode 100644 index 00000000..045830a0 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/ender_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/ender_chest" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/gray_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/gray_bed.json new file mode 100644 index 00000000..3cb3af71 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/gray_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/gray_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/gray_shulker_box.json new file mode 100644 index 00000000..214ca7c4 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/gray_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/green_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/green_bed.json new file mode 100644 index 00000000..d4c9dc4c --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/green_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/green_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/green_shulker_box.json new file mode 100644 index 00000000..7623bc3e --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/green_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_blue_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_blue_bed.json new file mode 100644 index 00000000..0c2dbdbd --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_blue_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_blue_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_blue_shulker_box.json new file mode 100644 index 00000000..c40ecde7 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_blue_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_gray_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_gray_bed.json new file mode 100644 index 00000000..ce874ca9 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_gray_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_gray_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_gray_shulker_box.json new file mode 100644 index 00000000..11b479b5 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/light_gray_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/lime_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/lime_bed.json new file mode 100644 index 00000000..f8980092 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/lime_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/lime_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/lime_shulker_box.json new file mode 100644 index 00000000..743f5a78 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/lime_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/magenta_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/magenta_bed.json new file mode 100644 index 00000000..ccafa9d4 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/magenta_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/magenta_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/magenta_shulker_box.json new file mode 100644 index 00000000..3cee5dfd --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/magenta_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/orange_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/orange_bed.json new file mode 100644 index 00000000..08f1c48b --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/orange_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/orange_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/orange_shulker_box.json new file mode 100644 index 00000000..bc22a74b --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/orange_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/pink_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/pink_bed.json new file mode 100644 index 00000000..af614849 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/pink_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/pink_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/pink_shulker_box.json new file mode 100644 index 00000000..a2adcbe3 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/pink_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/purple_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/purple_bed.json new file mode 100644 index 00000000..d35c2246 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/purple_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/purple_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/purple_shulker_box.json new file mode 100644 index 00000000..0c1e0711 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/purple_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/red_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/red_bed.json new file mode 100644 index 00000000..281d5a44 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/red_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/red_shulker_box.json new file mode 100644 index 00000000..d580b1b3 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/red_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/shulker_box.json new file mode 100644 index 00000000..9efe89ad --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/white_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/white_bed.json new file mode 100644 index 00000000..0c1244f2 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/white_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/white_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/white_shulker_box.json new file mode 100644 index 00000000..4524b795 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/white_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/yellow_bed.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/yellow_bed.json new file mode 100644 index 00000000..dec2d725 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/yellow_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_bed" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/blockstates/yellow_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/blockstates/yellow_shulker_box.json new file mode 100644 index 00000000..bd67c758 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/blockstates/yellow_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_shulker_box" + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/bed.json new file mode 100644 index 00000000..0f4a12a3 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/bed.json @@ -0,0 +1,122 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "elements": [ + { + "name": "bed", + "from": [0, 3, 0], + "to": [16, 9, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 0, 0]}, + "faces": { + "north": {"uv": [9.5, 0, 5.5, 1.5], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 1.5, 1.5, 5.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [5.5, 1.5, 1.5, 0], "texture": "#0"}, + "west": {"uv": [5.5, 1.5, 7, 5.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [1.5, 1.5, 5.5, 5.5], "rotation": 180, "texture": "#0"}, + "down": {"uv": [7, 1.5, 11, 5.5], "texture": "#0"} + } + }, + { + "name": "bed", + "from": [0, 3, -16], + "to": [16, 9, 0], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 0, 0]}, + "faces": { + "north": {"uv": [9.5, 5.5, 5.5, 7], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 7, 1.5, 11], "rotation": 270, "texture": "#0"}, + "south": {"uv": [5.5, 7, 1.5, 5.5], "texture": "#0"}, + "west": {"uv": [5.5, 7, 7, 11], "rotation": 90, "texture": "#0"}, + "up": {"uv": [1.5, 7, 5.5, 11], "rotation": 180, "texture": "#0"}, + "down": {"uv": [7, 7, 11, 11], "texture": "#0"} + } + }, + { + "name": "leg0", + "from": [13, 0, -16], + "to": [16, 3, -13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 0]}, + "faces": { + "north": {"uv": [13.25, 0.75, 14, 1.5], "texture": "#0"}, + "east": {"uv": [12.5, 0.75, 13.25, 1.5], "texture": "#0"}, + "south": {"uv": [14.75, 0.75, 15.5, 1.5], "texture": "#0"}, + "west": {"uv": [14, 0.75, 14.75, 1.5], "texture": "#0"}, + "up": {"uv": [14, 0.75, 13.25, 0], "texture": "#0"}, + "down": {"uv": [14.75, 0, 14, 0.75], "texture": "#0"} + } + }, + { + "name": "leg1", + "from": [13, 0, 13], + "to": [16, 3, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 0]}, + "faces": { + "north": {"uv": [13.25, 2.25, 14, 3], "texture": "#0"}, + "east": {"uv": [12.5, 2.25, 13.25, 3], "texture": "#0"}, + "south": {"uv": [14.75, 2.25, 15.5, 3], "texture": "#0"}, + "west": {"uv": [14, 2.25, 14.75, 3], "texture": "#0"}, + "up": {"uv": [14, 2.25, 13.25, 1.5], "texture": "#0"}, + "down": {"uv": [14.75, 1.5, 14, 2.25], "texture": "#0"} + } + }, + { + "name": "leg2", + "from": [0, 0, -16], + "to": [3, 3, -13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 0]}, + "faces": { + "north": {"uv": [13.25, 3.75, 14, 4.5], "texture": "#0"}, + "east": {"uv": [12.5, 3.75, 13.25, 4.5], "texture": "#0"}, + "south": {"uv": [14.75, 3.75, 15.5, 4.5], "texture": "#0"}, + "west": {"uv": [14, 3.75, 14.75, 4.5], "texture": "#0"}, + "up": {"uv": [14, 3.75, 13.25, 3], "texture": "#0"}, + "down": {"uv": [14.75, 3, 14, 3.75], "texture": "#0"} + } + }, + { + "name": "leg3", + "from": [0, 0, 13], + "to": [3, 3, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 0]}, + "faces": { + "north": {"uv": [13.25, 5.25, 14, 6], "texture": "#0"}, + "east": {"uv": [12.5, 5.25, 13.25, 6], "texture": "#0"}, + "south": {"uv": [14.75, 5.25, 15.5, 6], "texture": "#0"}, + "west": {"uv": [14, 5.25, 14.75, 6], "texture": "#0"}, + "up": {"uv": [14, 5.25, 13.25, 4.5], "texture": "#0"}, + "down": {"uv": [14.75, 4.5, 14, 5.25], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "bed", + "origin": [8, 0, 8], + "color": 0, + "children": [0, 1] + }, + { + "name": "leg0", + "origin": [14.5, 1.5, -6.5], + "color": 0, + "children": [2] + }, + { + "name": "leg1", + "origin": [14.5, 1.5, 22.5], + "color": 0, + "children": [3] + }, + { + "name": "leg2", + "origin": [1.5, 1.5, -6.5], + "color": 0, + "children": [4] + }, + { + "name": "leg3", + "origin": [1.5, 1.5, 22.5], + "color": 0, + "children": [5] + } + ] +} \ No newline at end of file diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/black_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/black_bed.json new file mode 100644 index 00000000..57c82022 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/black_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/black" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/black_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/black_shulker_box.json new file mode 100644 index 00000000..eb269330 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/black_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_black" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/blue_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/blue_bed.json new file mode 100644 index 00000000..fdaf6806 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/blue_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/blue" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/blue_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/blue_shulker_box.json new file mode 100644 index 00000000..472d1f7a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/blue_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_blue" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/brown_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/brown_bed.json new file mode 100644 index 00000000..2b88c6a6 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/brown_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/brown" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/brown_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/brown_shulker_box.json new file mode 100644 index 00000000..606900fd --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/brown_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_brown" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/chest.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/chest.json new file mode 100644 index 00000000..91c7f281 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/chest.json @@ -0,0 +1,46 @@ +{ + "textures": { + "0": "entity/chest/normal" + }, + "elements": [ + { + "from": [1, 9, 1], + "to": [15, 14, 15], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 11.5, 8] }, + "faces": { + "north": { "uv": [10.5, 3.5, 14, 4.75], "rotation": 180, "texture": "#0" }, + "east": { "uv": [0, 3.5, 3.5, 4.75], "rotation": 180, "texture": "#0" }, + "south": { "uv": [3.5, 3.5, 7, 4.75], "rotation": 180, "texture": "#0" }, + "west": { "uv": [7, 3.5, 10.5, 4.75], "rotation": 180, "texture": "#0" }, + "up": { "uv": [7, 0, 10.5, 3.5], "texture": "#0" }, + "down": { "uv": [3.5, 0, 7, 3.5], "texture": "#0" } + } + }, + { + "from": [7, 8, 0], + "to": [9, 12, 1], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 10, 0.5] }, + "faces": { + "north": { "uv": [0.5, 1.25, 1, 0.25], "texture": "#0" }, + "east": { "uv": [0.25, 1.25, 0.5, 0.25], "texture": "#0" }, + "south": { "uv": [0.5, 1.25, 1, 0.25], "texture": "#0" }, + "west": { "uv": [1, 1.25, 1.25, 0.25], "texture": "#0" }, + "up": { "uv": [0.5, 0, 1, 0.25], "texture": "#0" }, + "down": { "uv": [0.5, 0, 1, 0.25], "texture": "#0" } + } + }, + { + "from": [1, 0, 1], + "to": [15, 10, 15], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 5, 8] }, + "faces": { + "north": { "uv": [10.5, 8.25, 14, 10.75], "rotation": 180, "texture": "#0" }, + "east": { "uv": [7, 8.25, 10.5, 10.75], "rotation": 180, "texture": "#0" }, + "south": { "uv": [3.5, 8.25, 7, 10.75], "rotation": 180, "texture": "#0" }, + "west": { "uv": [0, 8.25, 3.5, 10.75], "rotation": 180, "texture": "#0" }, + "up": { "uv": [7, 4.75, 10.5, 8.25], "texture": "#0" }, + "down": { "uv": [3.5, 4.75, 7, 8.25], "rotation": 180, "texture": "#0" } + } + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/conduit.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/conduit.json new file mode 100644 index 00000000..f0e4447e --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/conduit.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 16], + "textures": { + "0": "minecraft:entity/conduit/base", + "particle": "minecraft:entity/conduit/base" + }, + "elements": [ + { + "from": [5, 5, 5], + "to": [11, 11, 11], + "rotation": { "angle": 0, "axis": "y", "origin": [5, 5, 5] }, + "faces": { + "north": { "uv": [3, 6, 6, 12], "texture": "#0" }, + "east": { "uv": [0, 6, 3, 12], "texture": "#0" }, + "south": { "uv": [9, 6, 12, 12], "texture": "#0" }, + "west": { "uv": [6, 6, 9, 12], "texture": "#0" }, + "up": { "uv": [6, 6, 3, 0], "texture": "#0" }, + "down": { "uv": [9, 0, 6, 6], "texture": "#0" } + } + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/cyan_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/cyan_bed.json new file mode 100644 index 00000000..9fccd84a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/cyan_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/cyan" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/cyan_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/cyan_shulker_box.json new file mode 100644 index 00000000..42e269ab --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/cyan_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_cyan" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/ender_chest.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/ender_chest.json new file mode 100644 index 00000000..25ddd45b --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/ender_chest.json @@ -0,0 +1,46 @@ +{ + "textures": { + "0": "entity/chest/ender" + }, + "elements": [ + { + "from": [1, 9, 1], + "to": [15, 14, 15], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 11.5, 8] }, + "faces": { + "north": { "uv": [10.5, 3.5, 14, 4.75], "rotation": 180, "texture": "#0" }, + "east": { "uv": [0, 3.5, 3.5, 4.75], "rotation": 180, "texture": "#0" }, + "south": { "uv": [3.5, 3.5, 7, 4.75], "rotation": 180, "texture": "#0" }, + "west": { "uv": [7, 3.5, 10.5, 4.75], "rotation": 180, "texture": "#0" }, + "up": { "uv": [7, 0, 10.5, 3.5], "texture": "#0" }, + "down": { "uv": [3.5, 0, 7, 3.5], "texture": "#0" } + } + }, + { + "from": [7, 8, 0], + "to": [9, 12, 1], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 10, 0.5] }, + "faces": { + "north": { "uv": [0.5, 1.25, 1, 0.25], "texture": "#0" }, + "east": { "uv": [0.25, 1.25, 0.5, 0.25], "texture": "#0" }, + "south": { "uv": [0.5, 1.25, 1, 0.25], "texture": "#0" }, + "west": { "uv": [1, 1.25, 1.25, 0.25], "texture": "#0" }, + "up": { "uv": [0.5, 0, 1, 0.25], "texture": "#0" }, + "down": { "uv": [0.5, 0, 1, 0.25], "texture": "#0" } + } + }, + { + "from": [1, 0, 1], + "to": [15, 10, 15], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 5, 8] }, + "faces": { + "north": { "uv": [10.5, 8.25, 14, 10.75], "rotation": 180, "texture": "#0" }, + "east": { "uv": [7, 8.25, 10.5, 10.75], "rotation": 180, "texture": "#0" }, + "south": { "uv": [3.5, 8.25, 7, 10.75], "rotation": 180, "texture": "#0" }, + "west": { "uv": [0, 8.25, 3.5, 10.75], "rotation": 180, "texture": "#0" }, + "up": { "uv": [7, 4.75, 10.5, 8.25], "texture": "#0" }, + "down": { "uv": [3.5, 4.75, 7, 8.25], "rotation": 180, "texture": "#0" } + } + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/gray_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/gray_bed.json new file mode 100644 index 00000000..fd3d5140 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/gray_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/gray" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/gray_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/gray_shulker_box.json new file mode 100644 index 00000000..3b33366d --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/gray_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_gray" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/green_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/green_bed.json new file mode 100644 index 00000000..405c6d60 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/green_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/green" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/green_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/green_shulker_box.json new file mode 100644 index 00000000..50c46318 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/green_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_green" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/light_blue_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/light_blue_bed.json new file mode 100644 index 00000000..f58cbc75 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/light_blue_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/light_blue" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/light_blue_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/light_blue_shulker_box.json new file mode 100644 index 00000000..83266db8 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/light_blue_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_light_blue" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/light_gray_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/light_gray_bed.json new file mode 100644 index 00000000..d7ce483c --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/light_gray_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/light_gray" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/light_gray_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/light_gray_shulker_box.json new file mode 100644 index 00000000..65c79552 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/light_gray_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_light_gray" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/lime_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/lime_bed.json new file mode 100644 index 00000000..d99d5162 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/lime_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/lime" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/lime_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/lime_shulker_box.json new file mode 100644 index 00000000..ae717b4e --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/lime_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_lime" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/magenta_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/magenta_bed.json new file mode 100644 index 00000000..6ff52613 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/magenta_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/magenta" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/magenta_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/magenta_shulker_box.json new file mode 100644 index 00000000..917a4600 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/magenta_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_magenta" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/orange_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/orange_bed.json new file mode 100644 index 00000000..868a5c5b --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/orange_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/orange" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/orange_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/orange_shulker_box.json new file mode 100644 index 00000000..34c7214d --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/orange_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_orange" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/pink_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/pink_bed.json new file mode 100644 index 00000000..32b11d80 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/pink_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/pink" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/pink_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/pink_shulker_box.json new file mode 100644 index 00000000..072c5abb --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/pink_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_pink" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/purple_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/purple_bed.json new file mode 100644 index 00000000..1edecbdf --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/purple_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/purple" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/purple_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/purple_shulker_box.json new file mode 100644 index 00000000..10798664 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/purple_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_purple" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/red_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/red_bed.json new file mode 100644 index 00000000..f39725ac --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/red_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/red" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/red_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/red_shulker_box.json new file mode 100644 index 00000000..f2a185f3 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/red_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_red" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/shulker_box.json new file mode 100644 index 00000000..d4890e6d --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/shulker_box.json @@ -0,0 +1,31 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "entity/shulker/shulker", + "particle": "entity/shulker/shulker" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": { "uv": [0, 9, 4, 13], "texture": "#0" }, + "east": { "uv": [0, 9, 4, 13], "texture": "#0" }, + "south": { "uv": [0, 9, 4, 13], "texture": "#0" }, + "west": { "uv": [0, 9, 4, 13], "texture": "#0" }, + "down": { "uv": [8, 7, 12, 11], "texture": "#0" } + } + }, + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": { "uv": [0, 4, 4, 8], "texture": "#0" }, + "east": { "uv": [0, 4, 4, 8], "texture": "#0" }, + "south": { "uv": [0, 4, 4, 8], "texture": "#0" }, + "west": { "uv": [0, 4, 4, 8], "texture": "#0" }, + "up": { "uv": [4, 0, 8, 4], "texture": "#0" } + } + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/white_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/white_bed.json new file mode 100644 index 00000000..e889fa63 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/white_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/white" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/white_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/white_shulker_box.json new file mode 100644 index 00000000..f41d2b06 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/white_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_white" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/yellow_bed.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/yellow_bed.json new file mode 100644 index 00000000..200a1d46 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/yellow_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bed", + "textures": { + "0": "entity/bed/yellow" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/block/yellow_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/block/yellow_shulker_box.json new file mode 100644 index 00000000..3e184271 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/block/yellow_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "block/shulker_box", + "textures": { + "0": "entity/shulker/shulker_yellow" + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/black_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/black_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/black_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/black_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/black_shulker_box.json new file mode 100644 index 00000000..a9ba4851 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/black_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/black_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/blue_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/blue_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/blue_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/blue_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/blue_shulker_box.json new file mode 100644 index 00000000..e5f42972 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/blue_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/blue_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/brown_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/brown_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/brown_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/brown_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/brown_shulker_box.json new file mode 100644 index 00000000..57a3a34f --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/brown_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/brown_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/conduit.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/conduit.json new file mode 100644 index 00000000..ecce55d6 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/conduit.json @@ -0,0 +1,38 @@ +{ + "parent": "block/conduit", + "textures": { + "particle": "block/conduit" + }, + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [1.0, 1.0, 1.0] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.8, 0.8, 0.8] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/creeper_head.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/creeper_head.json new file mode 100644 index 00000000..627544a8 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/creeper_head.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 32], + "textures": { + "0": "entity/creeper/creeper" + }, + "elements": [ + { + "name": "Head", + "from": [4, -8, 4], + "to": [12, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 8]}, + "faces": { + "north": {"uv": [2, 4, 4, 8], "texture": "#0"}, + "east": {"uv": [0, 4, 2, 8], "texture": "#0"}, + "south": {"uv": [6, 4, 8, 8], "texture": "#0"}, + "west": {"uv": [4, 4, 6, 8], "texture": "#0"}, + "up": {"uv": [4, 4, 2, 0], "texture": "#0"}, + "down": {"uv": [6, 0, 4, 4], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/cyan_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/cyan_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/cyan_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/cyan_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/cyan_shulker_box.json new file mode 100644 index 00000000..7374e97a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/cyan_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/cyan_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/decorated_pot.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/decorated_pot.json new file mode 100644 index 00000000..f2679f4c --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/decorated_pot.json @@ -0,0 +1,46 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "entity/decorated_pot/decorated_pot_side", + "1": "entity/decorated_pot/decorated_pot_base", + "particle": "entity/decorated_pot/decorated_pot_side" + }, + "elements": [ + { + "from": [1, 0, 1], + "to": [15, 16, 15], + "faces": { + "north": { "uv": [1, 0, 15, 16], "texture": "#0" }, + "east": { "uv": [1, 0, 15, 16], "texture": "#0" }, + "south": { "uv": [1, 0, 15, 16], "texture": "#0" }, + "west": { "uv": [1, 0, 15, 16], "texture": "#0" }, + "up": { "uv": [7, 6.5, 14, 13.5], "texture": "#1" }, + "down": { "uv": [0, 6.5, 7, 13.5], "texture": "#1" } + } + }, + { + "from": [4.75, 16, 4.75], + "to": [11.25, 20, 11.25], + "rotation": { "angle": 0, "axis": "y", "origin": [6, 16, 6] }, + "faces": { + "north": { "uv": [0, 4, 4, 6], "texture": "#1" }, + "east": { "uv": [0, 4, 4, 6], "texture": "#1" }, + "south": { "uv": [0, 4, 4, 6], "texture": "#1" }, + "west": { "uv": [0, 4, 4, 6], "texture": "#1" } + } + }, + { + "from": [4, 17, 4], + "to": [12, 20, 12], + "rotation": { "angle": 0, "axis": "y", "origin": [6, 17, 6] }, + "faces": { + "north": { "uv": [12, 4, 16, 5.5], "texture": "#1" }, + "east": { "uv": [12, 4, 16, 5.5], "texture": "#1" }, + "south": { "uv": [12, 4, 16, 5.5], "texture": "#1" }, + "west": { "uv": [12, 4, 16, 5.5], "texture": "#1" }, + "up": { "uv": [4, 0, 8, 4], "texture": "#1" }, + "down": { "uv": [8, 0, 12, 4], "texture": "#1" } + } + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/dragon_head.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/dragon_head.json new file mode 100644 index 00000000..715432d9 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/dragon_head.json @@ -0,0 +1,128 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [256, 256], + "textures": { + "0": "enderdragon" + }, + "elements": [ + { + "name": "head", + "from": [2, -6, -16], + "to": [14, -1, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -9, 8]}, + "faces": { + "north": {"uv": [12, 3.75, 12.75, 4.0625], "texture": "#0"}, + "east": {"uv": [11, 3.75, 12, 4.0625], "texture": "#0"}, + "south": {"uv": [13.75, 3.75, 14.5, 4.0625], "texture": "#0"}, + "west": {"uv": [12.75, 3.75, 13.75, 4.0625], "texture": "#0"}, + "up": {"uv": [12.75, 3.75, 12, 2.75], "texture": "#0"}, + "down": {"uv": [13.5, 2.75, 12.75, 3.75], "texture": "#0"} + } + }, + { + "name": "head", + "from": [0, -10, 0], + "to": [16, 6, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -9, 24]}, + "faces": { + "north": {"uv": [8, 2.875, 9, 3.875], "texture": "#0"}, + "east": {"uv": [7, 2.875, 8, 3.875], "texture": "#0"}, + "south": {"uv": [10, 2.875, 11, 3.875], "texture": "#0"}, + "west": {"uv": [9, 2.875, 10, 3.875], "texture": "#0"}, + "up": {"uv": [9, 2.875, 8, 1.875], "texture": "#0"}, + "down": {"uv": [10, 1.875, 9, 2.875], "texture": "#0"} + } + }, + { + "name": "head", + "from": [11, 6, 6], + "to": [13, 10, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -9, 30]}, + "faces": { + "north": {"uv": [0.5, 0.375, 0.375, 0.625], "texture": "#0"}, + "east": {"uv": [0.875, 0.375, 0.5, 0.625], "texture": "#0"}, + "south": {"uv": [1, 0.375, 0.875, 0.625], "texture": "#0"}, + "west": {"uv": [0.375, 0.375, 0, 0.625], "texture": "#0"}, + "up": {"uv": [0.375, 0.375, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0.5, 0, 0.625, 0.375], "texture": "#0"} + } + }, + { + "name": "head", + "from": [11, -1, -16], + "to": [13, 1, -12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -9, 8]}, + "faces": { + "north": {"uv": [7.375, 0.25, 7.25, 0.375], "texture": "#0"}, + "east": {"uv": [7.625, 0.25, 7.375, 0.375], "texture": "#0"}, + "south": {"uv": [7.75, 0.25, 7.625, 0.375], "texture": "#0"}, + "west": {"uv": [7.25, 0.25, 7, 0.375], "texture": "#0"}, + "up": {"uv": [7.25, 0.25, 7.375, 0], "texture": "#0"}, + "down": {"uv": [7.375, 0, 7.5, 0.25], "texture": "#0"} + } + }, + { + "name": "head", + "from": [3, 6, 6], + "to": [5, 10, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -9, 30]}, + "faces": { + "north": {"uv": [0.375, 0.375, 0.5, 0.625], "texture": "#0"}, + "east": {"uv": [0, 0.375, 0.375, 0.625], "texture": "#0"}, + "south": {"uv": [0.875, 0.375, 1, 0.625], "texture": "#0"}, + "west": {"uv": [0.5, 0.375, 0.875, 0.625], "texture": "#0"}, + "up": {"uv": [0.5, 0.375, 0.375, 0], "texture": "#0"}, + "down": {"uv": [0.625, 0, 0.5, 0.375], "texture": "#0"} + } + }, + { + "name": "head", + "from": [3, -1, -16], + "to": [5, 1, -12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -9, 8]}, + "faces": { + "north": {"uv": [7.25, 0.25, 7.375, 0.375], "texture": "#0"}, + "east": {"uv": [7, 0.25, 7.25, 0.375], "texture": "#0"}, + "south": {"uv": [7.625, 0.25, 7.75, 0.375], "texture": "#0"}, + "west": {"uv": [7.375, 0.25, 7.625, 0.375], "texture": "#0"}, + "up": {"uv": [7.375, 0.25, 7.25, 0], "texture": "#0"}, + "down": {"uv": [7.5, 0, 7.375, 0.25], "texture": "#0"} + } + }, + { + "name": "jaw", + "from": [2, -10, -16], + "to": [14, -6, 0], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, -6, 0]}, + "faces": { + "north": {"uv": [12, 5.0625, 12.75, 5.3125], "texture": "#0"}, + "east": {"uv": [11, 5.0625, 12, 5.3125], "texture": "#0"}, + "south": {"uv": [13.75, 5.0625, 14.5, 5.3125], "texture": "#0"}, + "west": {"uv": [12.75, 5.0625, 13.75, 5.3125], "texture": "#0"}, + "up": {"uv": [12.75, 5.0625, 12, 4.0625], "texture": "#0"}, + "down": {"uv": [13.5, 4.0625, 12.75, 5.0625], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "head", + "origin": [8, 7, -50], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + { + "name": "jaw", + "origin": [8, 3, -63], + "color": 0, + "children": [6] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/ender_chest.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/ender_chest.json new file mode 100644 index 00000000..3620ea87 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/ender_chest.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/ender_chest" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/gray_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/gray_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/gray_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/gray_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/gray_shulker_box.json new file mode 100644 index 00000000..84577af2 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/gray_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/gray_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/green_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/green_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/green_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/green_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/green_shulker_box.json new file mode 100644 index 00000000..3ab83019 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/green_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/green_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/light_blue_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/light_blue_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/light_blue_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/light_blue_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/light_blue_shulker_box.json new file mode 100644 index 00000000..645965d6 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/light_blue_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/light_blue_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/light_gray_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/light_gray_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/light_gray_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/light_gray_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/light_gray_shulker_box.json new file mode 100644 index 00000000..2ad2c558 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/light_gray_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/light_gray_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/lime_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/lime_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/lime_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/lime_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/lime_shulker_box.json new file mode 100644 index 00000000..2e01765d --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/lime_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/lime_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/magenta_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/magenta_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/magenta_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/magenta_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/magenta_shulker_box.json new file mode 100644 index 00000000..91fa9d1a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/magenta_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/magenta_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/mob_skull.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/mob_skull.json new file mode 100644 index 00000000..e8041a1b --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/mob_skull.json @@ -0,0 +1,18 @@ +{ + "elements": [ + { + "name": "head", + "from": [4, 0, 4], + "to": [12, 8, 12], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 0, 8] }, + "faces": { + "north": { "uv": [2, 4, 4, 8], "texture": "#skull" }, + "east": { "uv": [0, 4, 2, 8], "texture": "#skull" }, + "south": { "uv": [6, 4, 8, 8], "texture": "#skull" }, + "west": { "uv": [4, 4, 6, 8], "texture": "#skull" }, + "up": { "uv": [4, 4, 2, 0], "texture": "#skull" }, + "down": { "uv": [6, 0, 4, 4], "texture": "#skull" } + } + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/orange_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/orange_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/orange_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/orange_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/orange_shulker_box.json new file mode 100644 index 00000000..f2c1dc2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/orange_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/orange_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/piglin_head.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/piglin_head.json new file mode 100644 index 00000000..6bd42612 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/piglin_head.json @@ -0,0 +1,93 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "entity/piglin/piglin" + }, + "elements": [ + { + "name": "rightear", + "from": [12.5, -7, 6], + "to": [13.5, -2, 10], + "rotation": {"angle": 45, "axis": "z", "origin": [13, -2, 8]}, + "faces": { + "north": {"uv": [10.75, 2.5, 11, 3.75], "texture": "#0"}, + "east": {"uv": [9.75, 2.5, 10.75, 3.75], "texture": "#0"}, + "south": {"uv": [12, 2.5, 12.25, 3.75], "texture": "#0"}, + "west": {"uv": [11, 2.5, 12, 3.75], "texture": "#0"}, + "up": {"uv": [11, 2.5, 10.75, 1.5], "texture": "#0"}, + "down": {"uv": [11.25, 1.5, 11, 2.5], "texture": "#0"} + } + }, + { + "name": "leftear", + "from": [2.5, -7, 6], + "to": [3.5, -2, 10], + "rotation": {"angle": -45, "axis": "z", "origin": [3, -2, 8]}, + "faces": { + "north": {"uv": [13.75, 2.5, 14, 3.75], "texture": "#0"}, + "east": {"uv": [12.75, 2.5, 13.75, 3.75], "texture": "#0"}, + "south": {"uv": [15, 2.5, 15.25, 3.75], "texture": "#0"}, + "west": {"uv": [14, 2.5, 15, 3.75], "texture": "#0"}, + "up": {"uv": [14, 2.5, 13.75, 1.5], "texture": "#0"}, + "down": {"uv": [14.25, 1.5, 14, 2.5], "texture": "#0"} + } + }, + { + "name": "head", + "from": [10, -8, 3], + "to": [11, -6, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -32, 8]}, + "faces": { + "north": {"uv": [0.75, 0.25, 1, 0.75], "texture": "#0"}, + "east": {"uv": [0.5, 0.25, 0.75, 0.75], "texture": "#0"}, + "south": {"uv": [1.25, 0.25, 1.5, 0.75], "texture": "#0"}, + "west": {"uv": [1, 0.25, 1.25, 0.75], "texture": "#0"}, + "up": {"uv": [1, 0.25, 0.75, 0], "texture": "#0"}, + "down": {"uv": [1.25, 0, 1, 0.25], "texture": "#0"} + } + }, + { + "name": "head", + "from": [5, -8, 3], + "to": [6, -6, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -32, 8]}, + "faces": { + "north": {"uv": [0.75, 1.25, 1, 1.75], "texture": "#0"}, + "east": {"uv": [0.5, 1.25, 0.75, 1.75], "texture": "#0"}, + "south": {"uv": [1.25, 1.25, 1.5, 1.75], "texture": "#0"}, + "west": {"uv": [1, 1.25, 1.25, 1.75], "texture": "#0"}, + "up": {"uv": [1, 1.25, 0.75, 1], "texture": "#0"}, + "down": {"uv": [1.25, 1, 1, 1.25], "texture": "#0"} + } + }, + { + "name": "head", + "from": [6, -8, 3], + "to": [10, -4, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -32, 8]}, + "faces": { + "north": {"uv": [8, 0.5, 9, 1.5], "texture": "#0"}, + "east": {"uv": [7.75, 0.5, 8, 1.5], "texture": "#0"}, + "south": {"uv": [9.25, 0.5, 10.25, 1.5], "texture": "#0"}, + "west": {"uv": [9, 0.5, 9.25, 1.5], "texture": "#0"}, + "up": {"uv": [9, 0.5, 8, 0.25], "texture": "#0"}, + "down": {"uv": [10, 0.25, 9, 0.5], "texture": "#0"} + } + }, + { + "name": "head", + "from": [3.02, -7.98, 4.02], + "to": [12.98, -0.02, 11.98], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -32, 8]}, + "faces": { + "north": {"uv": [2, 2, 4.5, 4], "texture": "#0"}, + "east": {"uv": [0, 2, 2, 4], "texture": "#0"}, + "south": {"uv": [6.5, 2, 9, 4], "texture": "#0"}, + "west": {"uv": [4.5, 2, 6.5, 4], "texture": "#0"}, + "up": {"uv": [4.5, 2, 2, 0], "texture": "#0"}, + "down": {"uv": [7, 0, 4.5, 2], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/pink_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/pink_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/pink_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/pink_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/pink_shulker_box.json new file mode 100644 index 00000000..a9bdc762 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/pink_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/pink_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/player_head.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/player_head.json new file mode 100644 index 00000000..189ab21e --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/player_head.json @@ -0,0 +1,37 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "animated_java:steve" + }, + "elements": [ + { + "name": "Hat Layer", + "from": [3.5, -8.5, 3.5], + "to": [12.5, 0.5, 12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -31.5, 8]}, + "faces": { + "north": {"uv": [10, 2, 12, 4], "texture": "#0"}, + "east": {"uv": [8, 2, 10, 4], "texture": "#0"}, + "south": {"uv": [14, 2, 16, 4], "texture": "#0"}, + "west": {"uv": [12, 2, 14, 4], "texture": "#0"}, + "up": {"uv": [12, 2, 10, 0], "texture": "#0"}, + "down": {"uv": [14, 0, 12, 2], "texture": "#0"} + } + }, + { + "name": "Head", + "from": [4, -8, 4], + "to": [12, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -32, 8]}, + "faces": { + "north": {"uv": [2, 2, 4, 4], "texture": "#0"}, + "east": {"uv": [0, 2, 2, 4], "texture": "#0"}, + "south": {"uv": [6, 2, 8, 4], "texture": "#0"}, + "west": {"uv": [4, 2, 6, 4], "texture": "#0"}, + "up": {"uv": [4, 2, 2, 0], "texture": "#0"}, + "down": {"uv": [6, 0, 4, 2], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/purple_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/purple_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/purple_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/purple_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/purple_shulker_box.json new file mode 100644 index 00000000..5cfadf62 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/purple_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/purple_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/red_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/red_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/red_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/red_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/red_shulker_box.json new file mode 100644 index 00000000..45a5e0d9 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/red_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/red_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/shulker_box.json new file mode 100644 index 00000000..5bf34410 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/skeleton_skull.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/skeleton_skull.json new file mode 100644 index 00000000..1672d386 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/skeleton_skull.json @@ -0,0 +1,37 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 32], + "textures": { + "0": "minecraft:entity/skeleton/skeleton" + }, + "elements": [ + { + "name": "Hat Layer", + "from": [3.5, -8.5, 3.5], + "to": [12.5, 0.5, 12.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, -31.5, 8] }, + "faces": { + "north": { "uv": [10, 4, 12, 8], "texture": "#0" }, + "east": { "uv": [8, 4, 10, 8], "texture": "#0" }, + "south": { "uv": [14, 4, 16, 8], "texture": "#0" }, + "west": { "uv": [12, 4, 14, 8], "texture": "#0" }, + "up": { "uv": [12, 4, 10, 0], "texture": "#0" }, + "down": { "uv": [14, 0, 12, 4], "texture": "#0" } + } + }, + { + "name": "Head", + "from": [4, -8, 4], + "to": [12, 0, 12], + "rotation": { "angle": 0, "axis": "y", "origin": [8, -32, 8] }, + "faces": { + "north": { "uv": [2, 4, 4, 8], "texture": "#0" }, + "east": { "uv": [0, 4, 2, 8], "texture": "#0" }, + "south": { "uv": [6, 4, 8, 8], "texture": "#0" }, + "west": { "uv": [4, 4, 6, 8], "texture": "#0" }, + "up": { "uv": [4, 4, 2, 0], "texture": "#0" }, + "down": { "uv": [6, 0, 4, 4], "texture": "#0" } + } + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/template_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/template_banner.json new file mode 100644 index 00000000..04d180ed --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/template_banner.json @@ -0,0 +1,98 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "entity/banner_base", + "tint": "entity/banner_base" + }, + "elements": [ + { + "name": "stand", + "from": [-2, 30, 7], + "to": [18, 32, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 0, 7] }, + "faces": { + "north": { "uv": [0.5, 11, 5.5, 11.5], "texture": "#0" }, + "east": { "uv": [0, 11, 0.5, 11.5], "texture": "#0" }, + "south": { "uv": [6, 11, 11, 11.5], "texture": "#0" }, + "west": { "uv": [5.5, 11, 6, 11.5], "texture": "#0" }, + "up": { "uv": [5.5, 11, 0.5, 10.5], "texture": "#0" }, + "down": { "uv": [10.5, 10.5, 5.5, 11], "texture": "#0" } + } + }, + { + "name": "stand", + "from": [7, -12, 7], + "to": [9, 30, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [8, -2, 7] }, + "faces": { + "north": { "uv": [11.5, 0.5, 12, 11], "texture": "#0" }, + "east": { "uv": [11, 0.5, 11.5, 11], "texture": "#0" }, + "south": { "uv": [12.5, 0.5, 13, 11], "texture": "#0" }, + "west": { "uv": [12, 0.5, 12.5, 11], "texture": "#0" }, + "up": { "uv": [12, 0.5, 11.5, 0], "texture": "#0" }, + "down": { "uv": [12.5, 0, 12, 0.5], "texture": "#0" } + } + }, + { + "name": "banner", + "from": [-2, -8, 6], + "to": [18, 32, 7], + "rotation": { "angle": 0.5, "axis": "x", "origin": [8, 32, 7] }, + "faces": { + "north": { "uv": [0.25, 0.25, 5.25, 10.25], "texture": "#tint" }, + "east": { "uv": [0, 0.25, 0.25, 10.25], "texture": "#tint" }, + "south": { "uv": [5.5, 0.25, 10.5, 10.25], "texture": "#tint" }, + "west": { "uv": [5.25, 0.25, 5.5, 10.25], "texture": "#tint" }, + "up": { "uv": [5.25, 0.25, 0.25, 0], "texture": "#tint" }, + "down": { "uv": [10.25, 0, 5.25, 0.25], "texture": "#tint" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, 90, 0], + "translation": [0, 2, 0.5], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 90, 0], + "scale": [0.375, 0.375, 0.375] + }, + "ground": { + "translation": [0, 1, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 20, 0], + "translation": [0, -3.25, 0], + "scale": [0.5325, 0.5325, 0.5325] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 16, 7], + "scale": [1.5, 1.5, 1.5] + }, + "fixed": { + "rotation": [0, 180, 0], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "stand", + "origin": [8, 0, 8], + "color": 0, + "children": [ + 0, + 1, + { + "name": "banner", + "origin": [8, 44, 8], + "color": 0, + "children": [2] + } + ] + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/white_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/white_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/white_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/white_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/white_shulker_box.json new file mode 100644 index 00000000..4c1417c1 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/white_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/white_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/wither_skeleton_skull.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/wither_skeleton_skull.json new file mode 100644 index 00000000..cacd60f5 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/wither_skeleton_skull.json @@ -0,0 +1,37 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 32], + "textures": { + "0": "entity/skeleton/wither_skeleton" + }, + "elements": [ + { + "name": "Hat Layer", + "from": [3.5, -1, 3.5], + "to": [12.5, 8, 12.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, -24, 8] }, + "faces": { + "north": { "uv": [10, 4, 12, 8], "texture": "#0" }, + "east": { "uv": [8, 4, 10, 8], "texture": "#0" }, + "south": { "uv": [14, 4, 16, 8], "texture": "#0" }, + "west": { "uv": [12, 4, 14, 8], "texture": "#0" }, + "up": { "uv": [12, 4, 10, 0], "texture": "#0" }, + "down": { "uv": [14, 0, 12, 4], "texture": "#0" } + } + }, + { + "name": "Head", + "from": [4, 0, 4], + "to": [12, 8, 12], + "rotation": { "angle": 0, "axis": "y", "origin": [8, -24, 8] }, + "faces": { + "north": { "uv": [2, 4, 4, 8], "texture": "#0" }, + "east": { "uv": [0, 4, 2, 8], "texture": "#0" }, + "south": { "uv": [6, 4, 8, 8], "texture": "#0" }, + "west": { "uv": [4, 4, 6, 8], "texture": "#0" }, + "up": { "uv": [4, 4, 2, 0], "texture": "#0" }, + "down": { "uv": [6, 0, 4, 4], "texture": "#0" } + } + } + ] +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/yellow_banner.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/yellow_banner.json new file mode 100644 index 00000000..47720f2a --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/yellow_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_banner" +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/yellow_shulker_box.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/yellow_shulker_box.json new file mode 100644 index 00000000..f1ef0550 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/yellow_shulker_box.json @@ -0,0 +1,35 @@ +{ + "parent": "block/yellow_shulker_box", + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "ground": { + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [1, 1, 1] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_righthand": { + "rotation": [75, 315, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 315, 0], + "translation": [0, 0, 0], + "scale": [0.4, 0.4, 0.4] + } + } +} diff --git a/src/assets/vanillaAssetOverrides/minecraft/models/item/zombie_head.json b/src/assets/vanillaAssetOverrides/minecraft/models/item/zombie_head.json new file mode 100644 index 00000000..d6a8b8e1 --- /dev/null +++ b/src/assets/vanillaAssetOverrides/minecraft/models/item/zombie_head.json @@ -0,0 +1,37 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "entity/zombie/zombie" + }, + "elements": [ + { + "name": "Hat Layer", + "from": [3.5, -8.5, 3.5], + "to": [12.5, 0.5, 12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -31.5, 8]}, + "faces": { + "north": {"uv": [10, 2, 12, 4], "texture": "#0"}, + "east": {"uv": [8, 2, 10, 4], "texture": "#0"}, + "south": {"uv": [14, 2, 16, 4], "texture": "#0"}, + "west": {"uv": [12, 2, 14, 4], "texture": "#0"}, + "up": {"uv": [12, 2, 10, 0], "texture": "#0"}, + "down": {"uv": [14, 0, 12, 2], "texture": "#0"} + } + }, + { + "name": "Head", + "from": [4, -8, 4], + "to": [12, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -32, 8]}, + "faces": { + "north": {"uv": [2, 2, 4, 4], "texture": "#0"}, + "east": {"uv": [0, 2, 2, 4], "texture": "#0"}, + "south": {"uv": [6, 2, 8, 4], "texture": "#0"}, + "west": {"uv": [4, 2, 6, 4], "texture": "#0"}, + "up": {"uv": [4, 2, 2, 0], "texture": "#0"}, + "down": {"uv": [6, 0, 4, 2], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/blockbenchTypeMods.d.ts b/src/blockbenchTypeMods.d.ts new file mode 100644 index 00000000..0595987d --- /dev/null +++ b/src/blockbenchTypeMods.d.ts @@ -0,0 +1,114 @@ +import type { + BLUEPRINT_CODEC, + BLUEPRINT_FORMAT, + IBlueprintBoneConfigJSON, + IBlueprintLocatorConfigJSON, +} from './blueprintFormat' +import { blueprintSettingErrors } from './blueprintSettings' +import { openExportProgressDialog } from './interface/exportProgressDialog' +import { openUnexpectedErrorDialog } from './interface/unexpectedErrorDialog' +import { TextDisplay } from './outliner/textDisplay' +import { compileDataPack } from './systems/datapackCompiler' +import { compileResourcePack } from './systems/resourcepackCompiler' +import { MINECRAFT_REGISTRY } from './systems/minecraft/registryManager' +import { isDataPackPath, isResourcePackPath } from './util/minecraftUtil' +import { Valuable } from './util/stores' +import { type Variant } from './variants' +import { VanillaItemDisplay } from './outliner/vanillaItemDisplay' +import { VanillaBlockDisplay } from './outliner/vanillaBlockDisplay' + +declare module 'three' { + interface Object3D { + isVanillaItemModel?: boolean + isVanillaBlockModel?: boolean + isTextDisplayText?: boolean + fix_scale?: THREE.Vector3 + } +} + +declare global { + interface ModelProject { + animated_java: { + export_namespace: string + show_bounding_box: boolean + auto_bounding_box: boolean + bounding_box: [number, number] + // Export Settings + enable_plugin_mode: boolean + enable_resource_pack: boolean + enable_data_pack: boolean + // Resource Pack Settings + display_item: string + customModelDataOffset: number + enable_advanced_resource_pack_settings: boolean + resource_pack: string + display_item_path: string + model_folder: string + texture_folder: string + // Data Pack Settings + enable_advanced_data_pack_settings: boolean + data_pack: string + summon_commands: string + interpolation_duration: number + teleportation_duration: number + use_storage_for_animation: boolean + } + last_used_export_namespace: string + visualBoundingBox?: THREE.LineSegments + pluginMode: Valuable + transparentTexture: Texture + + variants: Variant[] + textDisplays: TextDisplay[] + vanillaItemDisplays: VanillaItemDisplay[] + vanillaBlockDisplays: VanillaBlockDisplay[] + } + + // eslint-disable-next-line @typescript-eslint/naming-convention + interface _Animation { + excluded_bones: CollectionItem[] + } + + interface Group { + configs: { + default: IBlueprintBoneConfigJSON + /** + * @key Variant UUID + * @value Variant Bone Config + */ + variants: Record + } + } + + interface Locator { + config: IBlueprintLocatorConfigJSON + } + + interface Cube { + rotationInvalid: boolean + } + + interface CubeFace { + lastVariant: Variant | undefined + } + + const AnimatedJava: { + API: { + compileDataPack: typeof compileDataPack + compileResourcePack: typeof compileResourcePack + Variant: typeof Variant + MINECRAFT_REGISTRY: typeof MINECRAFT_REGISTRY + openExportProgressDialog: typeof openExportProgressDialog + isResourcePackPath: typeof isResourcePackPath + isDataPackPath: typeof isDataPackPath + blueprintSettingErrors: typeof blueprintSettingErrors + openUnexpectedErrorDialog: typeof openUnexpectedErrorDialog + TRANSPARENT_TEXTURE: Texture + BLUEPRINT_FORMAT: typeof BLUEPRINT_FORMAT + BLUEPRINT_CODEC: typeof BLUEPRINT_CODEC + TextDisplay: typeof TextDisplay + VanillaItemDisplay: typeof VanillaItemDisplay + VanillaBlockDisplay: typeof VanillaBlockDisplay + } + } +} diff --git a/src/blueprintFormat.ts b/src/blueprintFormat.ts new file mode 100644 index 00000000..85e9f9ef --- /dev/null +++ b/src/blueprintFormat.ts @@ -0,0 +1,649 @@ +import * as blueprintSettings from './blueprintSettings' +import { BillboardMode, BoneConfig, LocatorConfig } from './nodeConfigs' +import ProjectTitleSvelte from './components/projectTitle.svelte' +import { PACKAGE } from './constants' +import { events } from './util/events' +import { injectSvelteCompomponent } from './util/injectSvelte' +import { toSafeFuntionName } from './util/minecraftUtil' +import { addProjectToRecentProjects } from './util/misc' +import { Valuable } from './util/stores' +import { TRANSPARENT_TEXTURE, TRANSPARENT_TEXTURE_MATERIAL, Variant } from './variants' +import FormatPageSvelte from './components/formatPage.svelte' + +/** + * The serialized Variant Bone Config + */ +export interface IBlueprintBoneConfigJSON { + billboard?: BoneConfig['billboard'] + override_brightness?: BoneConfig['overrideBrightness'] + brightness_override?: BoneConfig['brightnessOverride'] + enchanted?: BoneConfig['enchanted'] + glowing?: BoneConfig['glowing'] + override_glow_color?: BoneConfig['overrideGlowColor'] + glow_color?: BoneConfig['glowColor'] + inherit_settings?: BoneConfig['inheritSettings'] + invisible?: BoneConfig['invisible'] + /** + * Custom NBT for the bone that will be merged when this Variant is applied + */ + nbt?: BoneConfig['nbt'] + shadow_radius?: BoneConfig['shadowRadius'] + shadow_strength?: BoneConfig['shadowStrength'] + use_nbt?: BoneConfig['useNBT'] +} + +/** + * The serialized Variant Locator Config + */ +export interface IBlueprintLocatorConfigJSON { + use_entity?: LocatorConfig['useEntity'] + entity_type?: LocatorConfig['entityType'] + summon_commands?: LocatorConfig['_summonCommands'] + ticking_commands?: LocatorConfig['tickingCommands'] +} + +/** + * The serialized Variant Camera Config + */ +export interface IBlueprintCameraConfigJSON { + entity_type?: string + nbt?: string + ticking_commands?: string +} + +/** + * The serialized Variant Locator Config + */ +export interface IBlueprintTextDisplayConfigJSON { + billboard?: BillboardMode + override_brightness?: BoneConfig['overrideBrightness'] + brightness_override?: BoneConfig['brightnessOverride'] + glowing?: BoneConfig['glowing'] + override_glow_color?: BoneConfig['overrideGlowColor'] + glow_color?: BoneConfig['glowColor'] + invisible?: BoneConfig['invisible'] + shadow_radius?: BoneConfig['shadowRadius'] + shadow_strength?: BoneConfig['shadowStrength'] + use_nbt?: BoneConfig['useNBT'] + /** + * Custom NBT for the bone that will be merged when this Variant is applied + */ + nbt?: BoneConfig['nbt'] +} + +/** + * The serialized Variant + */ +export interface IBlueprintVariantJSON { + /** + * The display name of the Variant. Only use in Blockbench and for error messages. + */ + display_name: string + /** + * The name of the Variant + */ + name: string + /** + * The uuid of the Variant + */ + uuid: string + /** + * The texture map for the Variant + */ + texture_map: Record + /** + * The list of bones that should be ignored when applying the Variant + */ + excluded_bones: string[] +} + +/** + * The serialized Blueprint + */ +export interface IBlueprintFormatJSON { + meta: { + format: 'animated_java_blueprint' + format_version: string + uuid: string + last_used_export_namespace: string + box_uv?: boolean + backup?: boolean + save_location?: string + } + /** + * The project settings of the Blueprint + */ + project_settings?: NonNullable['animated_java'] + /** + * The variants of the Blueprint + */ + variants: { + /** + * The default Variant of the Blueprint + */ + default: IBlueprintVariantJSON + /** + * The list of variants of the Blueprint, excluding the default Variant + */ + list: IBlueprintVariantJSON[] + } + + resolution: { + width: number + height: number + } + + elements: any[] + outliner: any[] + textures: Texture[] + animations: AnimationOptions[] + animation_controllers?: AnimationControllerOptions[] + animation_variable_placeholders: string + backgrounds?: Record +} + +export function convertToBlueprint() { + console.error('Blueprint conversion is currently unsupported!') +} + +export function getDefaultProjectSettings(): ModelProject['animated_java'] { + return blueprintSettings.defaultValues +} + +export function updateBoundingBox() { + if (!Project || !isCurrentFormat()) return + if (Project.visualBoundingBox) scene.remove(Project.visualBoundingBox) + + if (!Project.animated_java.show_bounding_box) return + + let width = 0 + let height = 0 + if (Project.animated_java.auto_bounding_box) { + for (const cube of Cube.all) { + width = Math.max( + width, + Math.abs(cube.to[0]), + Math.abs(cube.to[2]), + Math.abs(cube.from[0]), + Math.abs(cube.from[2]) + ) + height = Math.max(height, cube.to[1], cube.from[1]) + } + const boundingBoxOverflow = 8 + width += boundingBoxOverflow + height += boundingBoxOverflow + } else { + width = Project.animated_java.bounding_box[0] + height = Project.animated_java.bounding_box[1] + } + + const boundingBox = new THREE.BoxGeometry(width * 2, height, width * 2) + Project.visualBoundingBox = new THREE.LineSegments( + new THREE.EdgesGeometry(boundingBox), + new THREE.LineBasicMaterial({ color: '#855000' }) + ) + Project.visualBoundingBox.position.set(0, height / 2, 0) + scene.add(Project.visualBoundingBox) +} + +/** + * The Animated Java Blueprint codec + */ +export const BLUEPRINT_CODEC = new Blockbench.Codec('animated_java_blueprint', { + name: 'Animated Java Blueprint', + extension: 'ajblueprint', + remember: true, + load_filter: { + extensions: ['ajblueprint'], + type: 'json', + }, + + // ANCHOR - Codec:load + load(model: IBlueprintFormatJSON, file) { + console.log(`Loading Animated Java Blueprint from '${file.name}'...`) + setupProject(BLUEPRINT_FORMAT, model.meta.uuid) + if (!Project) { + throw new Error('Failed to load Animated Java Blueprint') + } + addProjectToRecentProjects(file) + BLUEPRINT_CODEC.parse!(model, file.path) + console.log(`Successfully loaded Animated Java Blueprint`) + }, + + // ANCHOR - Codec:parse + // Takes the model file and injects it's data into the global Project + parse(model: IBlueprintFormatJSON, path) { + console.log(`Parsing Animated Java Blueprint from '${path}'...`) + if (!Project) throw new Error('No project to parse into') + + if (model.meta.uuid !== undefined) { + Project.uuid = model.meta.uuid + } + + Project.save_path = model.meta.save_location || path + + if (model.meta.box_uv !== undefined) { + Project.box_uv = model.meta.box_uv + } + + if (model.resolution !== undefined) { + Project.texture_width = model.resolution.width + Project.texture_height = model.resolution.height + } + + // Misc Project Properties + for (const key in ModelProject.properties) { + ModelProject.properties[key].merge(Project, model) + } + + if (model.project_settings) { + Project.animated_java = { ...Project.animated_java, ...model.project_settings } + } + + Project.last_used_export_namespace = + model.meta.last_used_export_namespace || Project.animated_java.export_namespace + + if (model.textures) { + for (const texture of model.textures) { + const newTexture = new Texture(texture, texture.uuid).add(false) + if (texture.relative_path && Project.save_path) { + const resolvedPath = PathModule.resolve( + Project.save_path, + texture.relative_path + ) + if (fs.existsSync(resolvedPath)) { + newTexture.fromPath(resolvedPath) + } + } else if (texture.path && fs.existsSync(texture.path) && !model.meta.backup) { + newTexture.fromPath(texture.path) + } else if (texture.source && texture.source.startsWith('data:')) { + newTexture.fromDataURL(texture.source) + } + } + } + + if (model.elements) { + const defaultTexture = Texture.getDefault() + for (const element of model.elements) { + const newElement = OutlinerElement.fromSave(element, true) + if (newElement instanceof Cube) { + for (const face in newElement.faces) { + if (element.faces) { + const texture = + element.faces[face].texture !== undefined && + Texture.all[element.faces[face].texture] + if (texture) { + newElement.faces[face].texture = texture.uuid + } + } else if ( + defaultTexture && + newElement.faces && + newElement.faces[face].texture !== undefined + ) { + newElement.faces[face].texture = defaultTexture.uuid + } + } + } else if (newElement instanceof AnimatedJava.API.TextDisplay) { + console.log('TextDisplay', newElement) + } + } + } + + if (model.outliner) { + parseGroups(model.outliner) + + for (const group of Group.all) { + group.name = toSafeFuntionName(group.name) + } + } + + if (model.variants) { + Variant.fromJSON(model.variants.default, true) + for (const variantJSON of model.variants.list) { + Variant.fromJSON(variantJSON) + } + Project.variants = Variant.all + } + + if (model.animations) { + for (const animation of model.animations) { + const newAnimation = new Blockbench.Animation() + newAnimation.uuid = animation.uuid || guid() + newAnimation.extend(animation).add() + } + } + + if (model.animation_controllers) { + for (const controller of model.animation_controllers) { + const newController = new Blockbench.AnimationController() + newController.uuid = controller.uuid || guid() + newController.extend(controller).add() + } + } + + if (model.animation_variable_placeholders) { + Interface.Panels.variable_placeholders.inside_vue._data.text = + model.animation_variable_placeholders + } + + if (model.backgrounds) { + for (const key in model.backgrounds) { + if (Object.hasOwn(Project.backgrounds, key)) { + const store = model.backgrounds[key] + const real = Project.backgrounds[key] + + if (store.image !== undefined) { + real.image = store.image + } + if (store.size !== undefined) { + real.size = store.size + } + if (store.x !== undefined) { + real.x = store.x + } + if (store.y !== undefined) { + real.y = store.y + } + if (store.lock !== undefined) { + real.lock = store.lock + } + } + } + Preview.all.forEach(p => { + if (p.canvas.isConnected) { + p.loadBackground() + } + }) + } + + // if (model.history) { + // Undo.history = model.history.slice() + // Undo.index = model.history_index || 0 + // } + + Canvas.updateAll() + Validator.validate() + BLUEPRINT_CODEC.dispatchEvent('parsed', { model }) + }, + + // ANCHOR - Codec:compile + compile(options) { + if (!options) options = {} + console.log(`Compiling Animated Java Blueprint from ${Project!.name}...`) + if (!Project) throw new Error('No project to compile.') + + const model = { + meta: { + format: BLUEPRINT_FORMAT.id, + format_version: PACKAGE.version, + uuid: Project.uuid, + save_location: Project.save_path, + last_used_export_namespace: Project.last_used_export_namespace, + }, + project_settings: Project.animated_java, + resolution: { + width: Project.texture_width || 16, + height: Project.texture_height || 16, + }, + } as IBlueprintFormatJSON + + console.log(Project.animated_java) + + // Disable variants while compiling + const previouslySelectedVariant = Variant.selected + Variant.selectDefault() + + for (const key in ModelProject.properties) { + if (ModelProject.properties[key].export) + ModelProject.properties[key].copy(Project, model) + } + + model.elements = [] + for (const element of elements) { + model.elements.push(element.getSaveCopy && element.getSaveCopy(!!model.meta)) + } + + model.outliner = compileGroups(true) + + model.textures = [] + for (const texture of Texture.all) { + const save = texture.getUndoCopy() as Texture + delete save.selected + if (Project.save_path && texture.path) { + const relative = PathModule.relative(Project.save_path, texture.path) + texture.relative_path = relative.replace(/\\/g, '/') + } + save.source = 'data:image/png;base64,' + texture.getBase64() + save.mode = 'bitmap' + if (options.absolute_paths === false) delete save.path + model.textures.push(save) + } + + model.variants = { + default: Variant.all.find(v => v.isDefault)!.toJSON(), + list: Variant.all.filter(v => !v.isDefault).map(v => v.toJSON()), + } + + model.animations = [] + const animationOptions = { bone_names: true, absolute_paths: options.absolute_paths } + for (const animation of Blockbench.Animation.all) { + if (!animation.getUndoCopy) continue + model.animations.push(animation.getUndoCopy(animationOptions, true)) + } + + model.animation_controllers = [] + for (const controller of Blockbench.AnimationController.all) { + if (!controller.getUndoCopy) continue + model.animation_controllers.push(controller.getUndoCopy(animationOptions, true)) + } + + if (Interface.Panels.variable_placeholders.inside_vue._data.text) { + model.animation_variable_placeholders = + Interface.Panels.variable_placeholders.inside_vue._data.text + } + + if (!options.backup) { + const backgrounds: Record = {} + for (const key in Project.backgrounds) { + const scene = Project.backgrounds[key] + if (scene.image) { + backgrounds[key] = scene.getSaveCopy() + } + } + if (Object.keys(backgrounds).length) { + model.backgrounds = backgrounds + } + } + + previouslySelectedVariant?.select() + + return options.raw ? model : compileJSON(model) + }, + + // ANCHOR - Codec:export + export() { + console.log(`Exporting Animated Java Blueprint for ${Project!.name}...`) + if (!Project) throw new Error('No project to export.') + Blockbench.export({ + resource_id: 'animated_java_blueprint.export', + type: 'json', + extensions: [BLUEPRINT_CODEC.extension], + content: BLUEPRINT_CODEC.compile(), + // eslint-disable-next-line @typescript-eslint/naming-convention + custom_writer: (content, path) => { + Project!.save_path = path + BLUEPRINT_CODEC.write(content, path) + }, + }) + }, + + // ANCHOR - Codec:fileName + fileName() { + if (!Project || !Project.name) return 'unnamed_project.ajblueprint' + return `${Project.name}.ajblueprint` + }, +}) + +/** ANCHOR + * The Animated Java Blueprint format + */ +export const BLUEPRINT_FORMAT = new Blockbench.ModelFormat({ + id: 'animated_java_blueprint', + name: 'Animated Java Blueprint', + icon: 'icon-armor_stand', + category: 'minecraft', + target: 'Minecraft: Java Edition', + confidential: false, + condition: () => true, + show_on_start_screen: true, + format_page: { + component: { + methods: {}, + created() { + // if (formatPage) + void injectSvelteCompomponent({ + elementSelector: () => $('#format_page_animated_java_blueprint_mount')[0], + svelteComponent: FormatPageSvelte, + svelteComponentProperties: { format: BLUEPRINT_FORMAT }, + }) + }, + template: `
`, + }, + }, + + onSetup(project, newModel) { + if (!Project) return + console.log('Animated Java Blueprint format setup') + const defaults = getDefaultProjectSettings() + Project.animated_java ??= defaults + for (const [key, value] of Object.entries(defaults) as Array< + [keyof ModelProject['animated_java'], any] + >) { + if (Project.animated_java[key] === undefined) { + // @ts-ignore + Project.animated_java[key] = value + } + } + + Project.variants ??= [] + Project.last_used_export_namespace = Project.animated_java.export_namespace + if (newModel) { + new Variant('Default', true) + } + const updateBoundingBoxIntervalId = setInterval(() => { + updateBoundingBox() + }, 500) + events.UNLOAD.subscribe(() => clearInterval(updateBoundingBoxIntervalId), true) + events.UNINSTALL.subscribe(() => clearInterval(updateBoundingBoxIntervalId), true) + requestAnimationFrame(() => { + Project!.pluginMode = new Valuable(Project!.animated_java.enable_plugin_mode) + // Remove the default title + const element = document.querySelector('#tab_bar_list .icon-armor_stand.icon') + element?.remove() + // Custom title + void injectSvelteCompomponent({ + elementSelector: () => { + const titles = [...document.querySelectorAll('.project_tab.selected')] + titles.filter(title => title.textContent === Project!.name) + if (titles.length) { + return titles[0] + } + }, + prepend: true, + svelteComponent: ProjectTitleSvelte, + svelteComponentProperties: { pluginMode: Project!.pluginMode }, + }) + + Project!.materials[TRANSPARENT_TEXTURE.uuid] = TRANSPARENT_TEXTURE_MATERIAL + TRANSPARENT_TEXTURE.updateMaterial() + Variant.selectDefault() + }) + }, + + onActivation() { + console.log('Animated Java Blueprint format activated') + }, + + codec: BLUEPRINT_CODEC, + + animated_textures: true, + animation_controllers: true, + animation_files: true, + animation_mode: true, + bone_binding_expression: true, + bone_rig: true, + box_uv: false, + centered_grid: true, + display_mode: false, + edit_mode: true, + integer_size: false, + java_face_properties: true, + locators: true, + meshes: false, + model_identifier: false, + optional_box_uv: true, + paint_mode: true, + parent_model_id: false, + pose_mode: false, + render_sides: 'front', + rotate_cubes: true, + rotation_limit: false, + select_texture_for_particles: false, + single_texture: false, + texture_folder: false, + texture_meshes: false, + uv_rotation: true, + vertex_color_ambient_occlusion: true, +}) +BLUEPRINT_CODEC.format = BLUEPRINT_FORMAT + +export function isCurrentFormat() { + return Format.id === BLUEPRINT_FORMAT.id +} + +export function saveBlueprint() { + if (!Project || !Format) return + if (Format !== BLUEPRINT_FORMAT) return + BLUEPRINT_CODEC.write(BLUEPRINT_CODEC.compile(), Project.save_path) +} + +export function updateRotationLock() { + if (!isCurrentFormat()) return + BLUEPRINT_FORMAT.rotation_limit = !( + Group.selected || + !!AnimatedJava.API.TextDisplay.selected.length || + !!AnimatedJava.API.VanillaItemDisplay.selected.length || + !!AnimatedJava.API.VanillaBlockDisplay.selected.length || + !!OutlinerElement.types.camera?.all.length + ) + BLUEPRINT_FORMAT.rotation_snap = BLUEPRINT_FORMAT.rotation_limit +} + +export function disableRotationLock() { + if (!isCurrentFormat()) return + BLUEPRINT_FORMAT.rotation_limit = false + BLUEPRINT_FORMAT.rotation_snap = false +} + +events.SELECT_PROJECT.subscribe(project => { + if (project.format.id === BLUEPRINT_FORMAT.id) { + events.SELECT_AJ_PROJECT.dispatch(project) + } +}) +events.UNSELECT_PROJECT.subscribe(project => { + if (project.format.id === BLUEPRINT_FORMAT.id) { + events.UNSELECT_AJ_PROJECT.dispatch(project) + } +}) +events.UPDATE_SELECTION.subscribe(updateRotationLock) +events.SELECT_AJ_PROJECT.subscribe(() => { + requestAnimationFrame(() => { + updateBoundingBox() + updateRotationLock() + }) +}) +events.UNSELECT_AJ_PROJECT.subscribe(project => { + console.log('Unselecting Animated Java Project', project) + if (project.visualBoundingBox) scene.remove(project.visualBoundingBox) + disableRotationLock() +}) diff --git a/src/blueprintSettings.ts b/src/blueprintSettings.ts new file mode 100644 index 00000000..3b505f51 --- /dev/null +++ b/src/blueprintSettings.ts @@ -0,0 +1,29 @@ +import { Valuable } from './util/stores' + +export const defaultValues: ModelProject['animated_java'] = { + export_namespace: 'blueprint', + show_bounding_box: false, + auto_bounding_box: true, + bounding_box: [48, 48], + // Export Settings + enable_plugin_mode: false, + enable_resource_pack: true, + enable_data_pack: true, + // Resource Pack Settings + display_item: 'minecraft:white_dye', + customModelDataOffset: 0, + enable_advanced_resource_pack_settings: false, + resource_pack: '', + display_item_path: '', + model_folder: '', + texture_folder: '', + // Data Pack Settings + enable_advanced_data_pack_settings: false, + data_pack: '', + summon_commands: '', + interpolation_duration: 1, + teleportation_duration: 1, + use_storage_for_animation: false, +} + +export const blueprintSettingErrors = new Valuable>({}) diff --git a/src/components/about.svelte b/src/components/about.svelte new file mode 100644 index 00000000..42156b90 --- /dev/null +++ b/src/components/about.svelte @@ -0,0 +1,190 @@ + + +
+
+ + +
+

Animated Java

+

v{PACKAGE.display_version}

+
+
+ + + +

Created by Titus Evans (SnaveSutit)

+

+ {PACKAGE.description} +

+ +

Special Thanks to

+
+
+

Ian Senne (FetchBot)

+

For always being there to help.

+
+
+

Jesse Spicer (Dominexis)

+

For making quaternions and matrices make sense.

+
+
+

Jannis Petersen

+

For creating an amazing tool and community.

+
+
+

Ewan Howell

+

For keeping me sane as I dig through Blockbench source code.

+
+
+

Boxic

+

For throwing absurd amounts of money at me.

+
+
+

Flubberschnub

+

For showing off the power of AJ with his boss fights.

+
+
+

Cool People who helped make AJ what it is today

+
+ {#each PACKAGE.special_thanks.sort() as special} +

{special}

+ {/each} +
+
+ + diff --git a/src/components/animatedJavaLoadingPopup.svelte b/src/components/animatedJavaLoadingPopup.svelte new file mode 100644 index 00000000..98b9a1e3 --- /dev/null +++ b/src/components/animatedJavaLoadingPopup.svelte @@ -0,0 +1,39 @@ + + + + +
+ {#if $loaded} +
Animated Java Loaded Successfully!
+ {:else} +
Loading Animated Java...
+ Running Armor Stand + {/if} +
+ + diff --git a/src/components/animationProperties.svelte b/src/components/animationProperties.svelte new file mode 100644 index 00000000..ecc3911f --- /dev/null +++ b/src/components/animationProperties.svelte @@ -0,0 +1,85 @@ + + + + +
+ + + + + + + + + {#if $overrideGlowColor} + + {/if} + + + + + + + + {#if $overrideBrightness} + + {/if} + + + + + {:else} + + + + + {#if $useNBT} +

+ {translate('dialog.bone_config.use_nbt.use_nbt_warning')} +

+ + {:else} + +
+ + + diff --git a/src/components/dialogItems/baseDialogItem.svelte b/src/components/dialogItems/baseDialogItem.svelte new file mode 100644 index 00000000..975c5fc3 --- /dev/null +++ b/src/components/dialogItems/baseDialogItem.svelte @@ -0,0 +1,75 @@ + + + + +
+
+ +
+ {#if tooltip} + + + {:else} +