├── .envrc ├── .github └── workflows │ ├── build.yml │ ├── img.yml │ └── pub.yml ├── .gitignore ├── .mdformat.toml ├── AUTHORS ├── LICENSE ├── README.md ├── VERSION ├── bited-build.toml ├── bited-img.toml ├── flake.lock ├── flake.nix ├── img ├── all.png ├── apl.png ├── box.png ├── bqn.png ├── braille.png ├── chars.png ├── clojure.png ├── design-flourishes.png ├── design-gaps.png ├── eng.png ├── engalt.png ├── go.png ├── header.png ├── map.png ├── math.png ├── multi.png ├── nerd.png ├── pretty.png ├── prog.png ├── sample.png ├── scala.png ├── svelte.png └── uiua.png ├── kirsch.css ├── package.json ├── pnpm-lock.yaml ├── src ├── kirsch.bdf └── kirsch.glyphs.toml └── txt ├── all.clr ├── all.txt ├── apl.clr ├── apl.txt ├── box.clr ├── box.txt ├── bqn.clr ├── bqn.txt ├── braille.clr ├── braille.txt ├── chars.txt ├── clojure.clr ├── clojure.txt ├── eng.clr ├── eng.txt ├── engalt.clr ├── engalt.txt ├── go.clr ├── go.txt ├── header.clr ├── header.txt ├── map.clr ├── map.txt ├── math.clr ├── math.txt ├── multi.clr ├── multi.txt ├── nerd.clr ├── nerd.txt ├── pretty.clr ├── pretty.txt ├── prog.clr ├── prog.txt ├── sample.clr ├── sample.txt ├── scala.clr ├── scala.txt ├── svelte.clr ├── svelte.txt ├── uiua.clr └── uiua.txt /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: build 2 | on: 3 | push: 4 | branches: [main] 5 | paths: 6 | - bited-build.toml 7 | - src/** 8 | - flake.nix 9 | - flake.lock 10 | - default.nix 11 | - .github/workflows/build.yml 12 | pull_request: 13 | branches: [main] 14 | paths: 15 | - bited-build.toml 16 | - src/** 17 | - flake.nix 18 | - flake.lock 19 | - default.nix 20 | - .github/workflows/build.yml 21 | concurrency: 22 | group: ${{ github.workflow }}-${{ github.ref }} 23 | cancel-in-progress: true 24 | jobs: 25 | build: 26 | runs-on: ubuntu-latest 27 | permissions: 28 | contents: write 29 | id-token: write 30 | steps: 31 | - uses: actions/checkout@v4 32 | with: 33 | persist-credentials: false 34 | - uses: DeterminateSystems/nix-installer-action@main 35 | - uses: DeterminateSystems/flakehub-cache-action@main 36 | - run: nix build .#kirsch 37 | - name: artifacts 38 | uses: actions/upload-artifact@v4 39 | with: 40 | name: kirsch 41 | path: result/share/fonts 42 | -------------------------------------------------------------------------------- /.github/workflows/img.yml: -------------------------------------------------------------------------------- 1 | name: img 2 | on: 3 | push: 4 | paths: 5 | - bited-img.toml 6 | - src/** 7 | - txt/** 8 | - flake.nix 9 | - flake.lock 10 | - img.nix 11 | - .github/workflows/img.yml 12 | branches: [main] 13 | concurrency: 14 | group: ${{ github.workflow }}-${{ github.ref }} 15 | cancel-in-progress: true 16 | jobs: 17 | img: 18 | runs-on: ubuntu-latest 19 | permissions: 20 | contents: write 21 | id-token: write 22 | steps: 23 | - uses: actions/checkout@v4 24 | - uses: DeterminateSystems/nix-installer-action@main 25 | - uses: DeterminateSystems/flakehub-cache-action@main 26 | - run: nix run .#kirsch-img 27 | - name: push 28 | uses: stefanzweifel/git-auto-commit-action@v5 29 | with: 30 | file_pattern: img txt 31 | commit_message: 'chore: auto-generate images' 32 | -------------------------------------------------------------------------------- /.github/workflows/pub.yml: -------------------------------------------------------------------------------- 1 | name: pub 2 | on: 3 | push: 4 | tags: ['v*'] 5 | concurrency: 6 | group: ${{ github.workflow }}-${{ github.ref }} 7 | cancel-in-progress: true 8 | jobs: 9 | pub: 10 | runs-on: ubuntu-latest 11 | permissions: 12 | contents: write 13 | id-token: write 14 | steps: 15 | - uses: actions/checkout@v4 16 | with: 17 | ref: main 18 | - uses: pnpm/action-setup@v3 19 | with: 20 | version: '*' 21 | - uses: actions/setup-node@v4 22 | with: 23 | node-version: '*' 24 | registry-url: https://registry.npmjs.org 25 | cache: pnpm 26 | - run: pnpm i 27 | - uses: DeterminateSystems/nix-installer-action@main 28 | - uses: DeterminateSystems/flakehub-cache-action@main 29 | - run: printf '%s' '${{ github.ref_name }}' | sed 's/^v//' > VERSION 30 | - run: nix build .#kirsch-release 31 | - name: push 32 | uses: stefanzweifel/git-auto-commit-action@v5 33 | with: 34 | file_pattern: VERSION 35 | commit_message: 'chore: bump version to ${{ github.ref_name }}' 36 | - name: release 37 | uses: svenstaro/upload-release-action@2.7.0 38 | with: 39 | file: result/share/fonts/* 40 | file_glob: true 41 | - uses: DeterminateSystems/flakehub-push@main 42 | with: 43 | visibility: public 44 | name: molarmanful/kirsch 45 | tag: ${{ inputs.tag }} 46 | include-output-paths: true 47 | - name: pub to npm 48 | run: | 49 | pnpm version ${{ github.ref_name }} --no-commit-hooks --no-git-tag-version --allow-same-version 50 | pnpm publish --no-git-checks 51 | env: 52 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 53 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | deps/ 2 | out/ 3 | test.* 4 | tmp* 5 | .direnv/ 6 | result 7 | -------------------------------------------------------------------------------- /.mdformat.toml: -------------------------------------------------------------------------------- 1 | wrap = 80 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Benjamin Pang (ben@benpa.ng) github.com/molarmanful 2 | 3 | TwoThirtyOneTwentyEightFourEightyThree () github.com/TwoThirtyOneTwentyEightFourEightyThree 4 | Vlad Petrov () github.com/ejiek github.com/ejiektpobehuk 5 | Artur Manuel (amad@atl.tools) github.com/amadaluzia 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2024 The kirsch Project Authors (https://github.com/molarmanful/kirsch) 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- SIL OPEN FONT 8 | LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide 12 | development of collaborative font projects, to support the font creation efforts 13 | of academic and linguistic communities, and to provide a free and open framework 14 | in which fonts may be shared and improved in partnership with others. 15 | 16 | The OFL allows the licensed fonts to be used, studied, modified and 17 | redistributed freely as long as they are not sold by themselves. The fonts, 18 | including any derivative works, can be bundled, embedded, redistributed and/or 19 | sold with any software provided that any reserved names are not used by 20 | derivative works. The fonts and derivatives, however, cannot be released under 21 | any other type of license. The requirement for fonts to remain under this 22 | license does not apply to any document created using the fonts or their 23 | derivatives. 24 | 25 | DEFINITIONS "Font Software" refers to the set of files released by the Copyright 26 | Holder(s) under this license and clearly marked as such. This may include source 27 | files, build scripts and documentation. 28 | 29 | "Reserved Font Name" refers to any names specified as such after the copyright 30 | statement(s). 31 | 32 | "Original Version" refers to the collection of Font Software components as 33 | distributed by the Copyright Holder(s). 34 | 35 | "Modified Version" refers to any derivative made by adding to, deleting, or 36 | substituting -- in part or in whole -- any of the components of the Original 37 | Version, by changing formats or by porting the Font Software to a new 38 | environment. 39 | 40 | "Author" refers to any designer, engineer, programmer, technical writer or other 41 | person who contributed to the Font Software. 42 | 43 | PERMISSION AND CONDITIONS Permission is hereby granted, free of charge, to any 44 | person obtaining a copy of the Font Software, to use, study, copy, merge, embed, 45 | modify, redistribute, and sell modified and unmodified copies of the Font 46 | Software, subject to the following conditions: 47 | 48 | 1) Neither the Font Software nor any of its individual components, in Original 49 | or Modified Versions, may be sold by itself. 50 | 51 | 2) Original or Modified Versions of the Font Software may be bundled, 52 | redistributed and/or sold with any software, provided that each copy contains 53 | the above copyright notice and this license. These can be included either as 54 | stand-alone text files, human-readable headers or in the appropriate 55 | machine-readable metadata fields within text or binary files as long as those 56 | fields can be easily viewed by the user. 57 | 58 | 3) No Modified Version of the Font Software may use the Reserved Font Name(s) 59 | unless explicit written permission is granted by the corresponding Copyright 60 | Holder. This restriction only applies to the primary font name as presented to 61 | the users. 62 | 63 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software 64 | shall not be used to promote, endorse or advertise any Modified Version, except 65 | to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) 66 | or with their explicit written permission. 67 | 68 | 5) The Font Software, modified or unmodified, in part or in whole, must be 69 | distributed entirely under this license, and must not be distributed under any 70 | other license. The requirement for fonts to remain under this license does not 71 | apply to any document created using the Font Software. 72 | 73 | TERMINATION This license becomes null and void if any of the above conditions 74 | are not met. 75 | 76 | DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 77 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 78 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 79 | COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT 80 | HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY 81 | GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN 82 | ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY 83 | TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. 84 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | ![kirsch](./img/header.png) 4 | 5 |
6 | 7 | ## Table of Contents 8 | 9 | - [Table of Contents](#table-of-contents) 10 | - [Overview](#overview) 11 | - [Gallery](#gallery) 12 | - [Installation/Usage](#installation/usage) 13 | - [Nerd Fonts](#nerd-fonts) 14 | - [Propo](#propo) 15 | - [Nixpkgs](#nixpkgs) 16 | - [Nix Flakes](#nix-flakes) 17 | - [Web](#web) 18 | - [Design Notes](#design-notes) 19 | - [Flourishes](#flourishes) 20 | - [Gaps](#gaps) 21 | - [Contributing](#contributing) 22 | - [Credits](#credits) 23 | - [Licensing](#licensing) 24 | 25 | ## Overview 26 | 27 | **kirsch** /ˈkɪərʃ/ _n._ 28 | 29 | 1. _(German)_ cherry. 30 | 31 | 1. _(Russell A. Kirsch, 1929 - 2020)_ American engineer recognized as the 32 | developer of the first digital image scanner and the inventor of the pixel. 33 | 34 | 1. A monospace bitmap font with a 6x16 bounding box (5px avg width, 4px descent, 35 | 12px ascent, 5px x-height, 9px cap height). It draws from a variety of 36 | letterforms and motifs to create a distinct humanist feel at a compact size. 37 | 38 | Some glyphs come from [Cozette](https://github.com/slavfox/Cozette), often 39 | with modifications to adhere to kirsch's design. 40 | 41 | ## Gallery 42 | 43 |
44 | Glyphs 45 |
46 | 47 | ![kirsch glyphs](./img/chars.png) 48 | 49 |
50 |
51 | 52 |
53 | Glyphs Map 54 |
55 | 56 | ![kirsch glyph map](./img/map.png) 57 | 58 |
59 |
60 | 61 |
62 | Samples 63 |
64 | 65 | ![kirsch sample](./img/sample.png) 66 | 67 |
68 |
69 | 70 | ## Installation/Usage 71 | 72 | Download from [Releases](https://github.com/molarmanful/kirsch/releases). 73 | Included are bitmap formats - OTB, BDF, PCF, DFONT (for Mac users) - as well as 74 | TTF. 2x versions are available for HiDPI screens. Note that PCF doesn't contain 75 | glyphs past U+FFFF. 76 | 77 | For the crispiest viewing experience, try to use the bitmap formats when 78 | possible. If bitmap fonts are not supported on your platform (e.g. Windows, 79 | VSCode), then use the TTF at font sizes that are multiples of 16px. 80 | 81 | > [!TIP] 82 | > If you need font size in pt, use the following conversion: 83 | > 84 | > `pt = px * 72 / dpi` 85 | > 86 | > e.g. 16px on a 96dpi screen is `16px * 72 / 96dpi = 12pt`. 87 | 88 | ### Nerd Fonts 89 | 90 | kirsch comes with custom Nerd Fonts glyphs. Support is still WIP. For the sake 91 | of visual clarity, kirsch's Nerd Fonts glyphs tend to bleed heavily beyond their 92 | widths. I've drawn these glyphs with the expectation that they will look best 93 | when padded before and after with a single space. 94 | 95 | Patched Nerd Fonts that cover the rest of the Nerd Fonts are available. The 96 | "Mono" variant uses smaller glyphs (single- instead of double-width) and works 97 | for terminals that can't mix widths. 98 | 99 | ### Propo 100 | 101 | For terminals like foot with partial bleed, a Propo variant of kirsch is 102 | available. This variant adjusts the glyphs such that their cells won't be cut 103 | off by the terminal's font renderer. 104 | 105 | ### Nixpkgs 106 | 107 | Thanks to [@ejiektpobehuk](https://github.com/ejiektpobehuk), kirsch is 108 | available on Nixpkgs as `kirsch`. 109 | 110 | ### Nix Flakes 111 | 112 | kirsch releases are also pushed to 113 | [FlakeHub](https://flakehub.com/flake/molarmanful/ANAKRON). `kirsch` (aliased to 114 | `default`) is the base package, while `kirsch-nerd` includes Nerd Fonts patches. 115 | 116 | ### Web 117 | 118 | I would generally discourage usage of kirsch on the web due to lack of bitmap 119 | support. But for the stubborn and the brave, WOFF2 is available. There is also a 120 | [CDN-hosted stylesheet](https://cdn.jsdelivr.net/npm/kirsch@latest/kirsch.css) 121 | for convenience. 122 | 123 | ```html 124 | 128 | ``` 129 | 130 | ## Design Notes 131 | 132 | Unlike my previous font [eldur](https://github.com/molarmanful/eldur), which had 133 | a mere 4px avg. char width to work with, kirsch has a 5px avg. char width. That 134 | 1px of extra width affords a surprising amount of leeway for the design. Far 135 | more glyphs fit comfortably into 5px width - e.g. "m" and "w" - meaning that 136 | those glyphs won't break kerning and intrude on the spaces of neighboring 137 | glyphs. Glyphs that don't fit into 5px width can now work with 7px width, which 138 | maintains balance and legibility without affecting kerning too negatively. 139 | 140 | ### Flourishes 141 | 142 | ![rogue fijian xylophone](./img/design-flourishes.png) 143 | 144 | The flourishes - e.g. in "i" or "f" - are a stylistic choice, but they also 145 | serve a functional purpose. Without the flourishes, "i" would take up 1px of 146 | width, leaving 4px of awkward space. 2px flourishes on each side of the "i" give 147 | it a 5px width, thereby addressing the kerning issue in a stylish way. 148 | 149 | In "l"'s case, the script-style flourishes further distinguish it from other 150 | vertical characters like `1I|`. 151 | 152 | ### Gaps 153 | 154 | ![bad queen peg 69](./img/design-gaps.png) 155 | 156 | One of kirsch's distinctive features is the presence of a gap at the bowls of 157 | the letters. Filling in the gap would make the letters either too square or too 158 | bunched-up, while leaving the gap open declutters the letterforms. The gaps also 159 | evoke script-style stroke endings. 160 | 161 | ## Contributing 162 | 163 | Issues, feature/glyph requests, and pull requests are all welcome! 164 | 165 | ## Credits 166 | 167 | These are projects that have inspired/helped me create kirsch and are 100% worth 168 | checking out. 169 | 170 | - [Bits'n'Picas](https://github.com/kreativekorp/bitsnpicas) 171 | - [Cozette](https://github.com/slavfox/Cozette) 172 | - [Cyreal Font Testing Page](http://www.cyreal.org/Font-Testing-Page/) 173 | - [W3 UTF-8 Demo](https://www.w3.org/2001/06/utf-8-test/UTF-8-demo.html) / 174 | [Markus Kuhn UTF-8 Demo](https://antofthy.gitlab.io/info/data/utf8-demo.txt) 175 | - [APL386](https://abrudz.github.io/APL386) 176 | 177 | ## Licensing 178 | 179 | Made with ♥ by [the kirsch Project Authors](AUTHORS). Released under the OFL-1.1 180 | License. 181 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 -------------------------------------------------------------------------------- /bited-build.toml: -------------------------------------------------------------------------------- 1 | [[fonts]] 2 | name = "kirsch" 3 | xs = [2, 3] 4 | ttfix = ''' 5 | f.os2_version = 4 6 | f.os2_vendor = "BenP" 7 | f.os2_panose = (0, 0, 0, 9, 0, 0, 0, 0, 0, 0) 8 | f.os2_weight_width_slope_only = True 9 | ''' 10 | 11 | [fonts.sfnt] 12 | "UniqueID" = "molarmanful: kirsch: 2024" 13 | "Vendor URL" = "https://github.com/molarmanful/kirsch" 14 | "Designer" = "Benjamin Pang" 15 | "Designer URL" = "https://benpa.ng" 16 | "License" = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL" 17 | "License URL" = "https://scripts.sil.org/OFL" 18 | 19 | [[fonts]] 20 | name = "kirsch Propo" 21 | src = "tmp/kirsch_propo.bdf" 22 | xs = [2, 3] 23 | ttfix = ''' 24 | f.os2_version = 4 25 | f.os2_vendor = "BenP" 26 | f.os2_weight_width_slope_only = True 27 | ''' 28 | -------------------------------------------------------------------------------- /bited-img.toml: -------------------------------------------------------------------------------- 1 | [[fonts]] 2 | name = "kirsch" 3 | font_size = 16 4 | 5 | [fonts.clrs] 6 | bg = "#140011" 7 | fg = "#e6cfd6" 8 | base = [ 9 | "#330a1f", 10 | "#ff738a", 11 | "#73e673", 12 | "#ff9966", 13 | "#8cc6ff", 14 | "#c291f2", 15 | "#73e6e6", 16 | "#668080", 17 | "#4d1339", 18 | "#ff738a", 19 | "#73e673", 20 | "#f2de79", 21 | "#8cc6ff", 22 | "#c291f2", 23 | "#73e6e6", 24 | "#b8e6de", 25 | ] 26 | 27 | [[fonts.gens]] 28 | name = "sample" 29 | txts = [ 30 | "prog", 31 | "eng", 32 | "multi", 33 | "scala", 34 | "clojure", 35 | "go", 36 | "svelte", 37 | "apl", 38 | "bqn", 39 | "uiua", 40 | "engalt", 41 | "pretty", 42 | "math", 43 | "box", 44 | "braille", 45 | "nerd", 46 | ] 47 | 48 | [[fonts.gens]] 49 | name = "all" 50 | txts = ["header", "sample"] 51 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- 1 | { 2 | "nodes": { 3 | "bited-utils": { 4 | "inputs": { 5 | "devshell": "devshell", 6 | "flake-parts": [ 7 | "flake-parts" 8 | ], 9 | "nixpkgs": [ 10 | "nixpkgs" 11 | ], 12 | "systems": "systems" 13 | }, 14 | "locked": { 15 | "lastModified": 1745040072, 16 | "narHash": "sha256-taSmUS6ruZCxIGnBGCB3LqVHf03wrLwH914IEruer+E=", 17 | "owner": "molarmanful", 18 | "repo": "bited-utils", 19 | "rev": "e57c98bf4dc07bd52df3c5c51347d41f680dedbd", 20 | "type": "github" 21 | }, 22 | "original": { 23 | "owner": "molarmanful", 24 | "repo": "bited-utils", 25 | "type": "github" 26 | } 27 | }, 28 | "devshell": { 29 | "inputs": { 30 | "nixpkgs": "nixpkgs" 31 | }, 32 | "locked": { 33 | "lastModified": 1741473158, 34 | "narHash": "sha256-kWNaq6wQUbUMlPgw8Y+9/9wP0F8SHkjy24/mN3UAppg=", 35 | "owner": "numtide", 36 | "repo": "devshell", 37 | "rev": "7c9e793ebe66bcba8292989a68c0419b737a22a0", 38 | "type": "github" 39 | }, 40 | "original": { 41 | "owner": "numtide", 42 | "repo": "devshell", 43 | "type": "github" 44 | } 45 | }, 46 | "flake-parts": { 47 | "inputs": { 48 | "nixpkgs-lib": [ 49 | "nixpkgs" 50 | ] 51 | }, 52 | "locked": { 53 | "lastModified": 1743550720, 54 | "narHash": "sha256-hIshGgKZCgWh6AYJpJmRgFdR3WUbkY04o82X05xqQiY=", 55 | "owner": "hercules-ci", 56 | "repo": "flake-parts", 57 | "rev": "c621e8422220273271f52058f618c94e405bb0f5", 58 | "type": "github" 59 | }, 60 | "original": { 61 | "owner": "hercules-ci", 62 | "repo": "flake-parts", 63 | "type": "github" 64 | } 65 | }, 66 | "nixpkgs": { 67 | "locked": { 68 | "lastModified": 1722073938, 69 | "narHash": "sha256-OpX0StkL8vpXyWOGUD6G+MA26wAXK6SpT94kLJXo6B4=", 70 | "owner": "NixOS", 71 | "repo": "nixpkgs", 72 | "rev": "e36e9f57337d0ff0cf77aceb58af4c805472bfae", 73 | "type": "github" 74 | }, 75 | "original": { 76 | "owner": "NixOS", 77 | "ref": "nixpkgs-unstable", 78 | "repo": "nixpkgs", 79 | "type": "github" 80 | } 81 | }, 82 | "nixpkgs_2": { 83 | "locked": { 84 | "lastModified": 1744932701, 85 | "narHash": "sha256-fusHbZCyv126cyArUwwKrLdCkgVAIaa/fQJYFlCEqiU=", 86 | "owner": "nixos", 87 | "repo": "nixpkgs", 88 | "rev": "b024ced1aac25639f8ca8fdfc2f8c4fbd66c48ef", 89 | "type": "github" 90 | }, 91 | "original": { 92 | "owner": "nixos", 93 | "ref": "nixos-unstable", 94 | "repo": "nixpkgs", 95 | "type": "github" 96 | } 97 | }, 98 | "root": { 99 | "inputs": { 100 | "bited-utils": "bited-utils", 101 | "flake-parts": "flake-parts", 102 | "nixpkgs": "nixpkgs_2", 103 | "systems": "systems_2" 104 | } 105 | }, 106 | "systems": { 107 | "locked": { 108 | "lastModified": 1681028828, 109 | "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 110 | "owner": "nix-systems", 111 | "repo": "default", 112 | "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 113 | "type": "github" 114 | }, 115 | "original": { 116 | "id": "systems", 117 | "type": "indirect" 118 | } 119 | }, 120 | "systems_2": { 121 | "locked": { 122 | "lastModified": 1681028828, 123 | "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 124 | "owner": "nix-systems", 125 | "repo": "default", 126 | "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 127 | "type": "github" 128 | }, 129 | "original": { 130 | "owner": "nix-systems", 131 | "repo": "default", 132 | "type": "github" 133 | } 134 | } 135 | }, 136 | "root": "root", 137 | "version": 7 138 | } 139 | -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- 1 | { 2 | description = "A versatile bitmap font with an organic flair"; 3 | 4 | inputs = { 5 | nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 6 | systems.url = "github:nix-systems/default"; 7 | flake-parts = { 8 | url = "github:hercules-ci/flake-parts"; 9 | inputs.nixpkgs-lib.follows = "nixpkgs"; 10 | }; 11 | bited-utils = { 12 | url = "github:molarmanful/bited-utils"; 13 | inputs = { 14 | nixpkgs.follows = "nixpkgs"; 15 | flake-parts.follows = "flake-parts"; 16 | }; 17 | }; 18 | }; 19 | 20 | outputs = 21 | inputs@{ systems, flake-parts, ... }: 22 | flake-parts.lib.mkFlake { inherit inputs; } { 23 | imports = [ inputs.bited-utils.flakeModule ]; 24 | systems = import systems; 25 | perSystem = 26 | { 27 | config, 28 | pkgs, 29 | self', 30 | ... 31 | }: 32 | { 33 | bited-utils = { 34 | name = "kirsch"; 35 | version = builtins.readFile ./VERSION; 36 | src = ./.; 37 | nerd = true; 38 | 39 | buildTransformer = 40 | build: 41 | build.overrideAttrs { 42 | preBuild = '' 43 | mkdir -p tmp 44 | ${config.bited-utils.bited-bbl}/bin/bited-bbl --name 'kirsch Propo' --nerd --ceil < src/kirsch.bdf > tmp/kirsch_propo.bdf 45 | ''; 46 | }; 47 | }; 48 | 49 | devShells.default = pkgs.mkShell { 50 | packages = with pkgs; [ 51 | config.bited-utils.bited-clr 52 | taplo 53 | # lsps 54 | nil 55 | nixd 56 | marksman 57 | # formatters 58 | nixfmt-rfc-style 59 | mdformat 60 | python3Packages.mdformat-gfm 61 | python3Packages.mdformat-gfm-alerts 62 | # linters 63 | statix 64 | deadnix 65 | ]; 66 | }; 67 | 68 | formatter = pkgs.writeShellApplication { 69 | name = "linter"; 70 | runtimeInputs = self'.devShells.default.nativeBuildInputs; 71 | text = '' 72 | find . -iname '*.nix' -exec nixfmt {} \; -exec deadnix -e {} \; -exec statix fix {} \; 73 | find . -iname '*.toml' -exec taplo fmt {} \; 74 | find . -iname '*.md' -exec mdformat {} \; 75 | ''; 76 | }; 77 | }; 78 | }; 79 | } 80 | -------------------------------------------------------------------------------- /img/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/all.png -------------------------------------------------------------------------------- /img/apl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/apl.png -------------------------------------------------------------------------------- /img/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/box.png -------------------------------------------------------------------------------- /img/bqn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/bqn.png -------------------------------------------------------------------------------- /img/braille.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/braille.png -------------------------------------------------------------------------------- /img/chars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/chars.png -------------------------------------------------------------------------------- /img/clojure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/clojure.png -------------------------------------------------------------------------------- /img/design-flourishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/design-flourishes.png -------------------------------------------------------------------------------- /img/design-gaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/design-gaps.png -------------------------------------------------------------------------------- /img/eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/eng.png -------------------------------------------------------------------------------- /img/engalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/engalt.png -------------------------------------------------------------------------------- /img/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/go.png -------------------------------------------------------------------------------- /img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/header.png -------------------------------------------------------------------------------- /img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/map.png -------------------------------------------------------------------------------- /img/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/math.png -------------------------------------------------------------------------------- /img/multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/multi.png -------------------------------------------------------------------------------- /img/nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/nerd.png -------------------------------------------------------------------------------- /img/pretty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/pretty.png -------------------------------------------------------------------------------- /img/prog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/prog.png -------------------------------------------------------------------------------- /img/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/sample.png -------------------------------------------------------------------------------- /img/scala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/scala.png -------------------------------------------------------------------------------- /img/svelte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/svelte.png -------------------------------------------------------------------------------- /img/uiua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molarmanful/kirsch/3d525dc16f02290356eca904c907fe578ed1b685/img/uiua.png -------------------------------------------------------------------------------- /kirsch.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "kirsch"; 3 | src: 4 | local("kirsch"), 5 | url("out/kirsch.woff2") format("woff2"), 6 | url("out/kirsch.ttf") format("truetype"); 7 | font-display: swap; 8 | } 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kirsch", 3 | "version": "0.0.0", 4 | "description": "A versatile bitmap font with an organic flair.", 5 | "keywords": [], 6 | "author": "The kirsch Project Authors", 7 | "license": "OFL", 8 | "repository": { 9 | "type": "git", 10 | "url": "https://github.com/molarmanful/kirsch.git" 11 | }, 12 | "files": [ 13 | "out/", 14 | "kirsch.css" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | -------------------------------------------------------------------------------- /src/kirsch.glyphs.toml: -------------------------------------------------------------------------------- 1 | [default] 2 | is_abs = false 3 | -------------------------------------------------------------------------------- /txt/apl.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | 7 8. 54.434B. 7 8 6 | 7 8. 54B 7 8 7 | 7 8. 54 .34 B. 7 8 8 | 7 8. 5B 4. 4.4B4. 4. 7 8 9 | 7 8. 5.34. 434 B 7 8 10 | 7 8. 435.34. 434B. 34. 434 B. 7 8 11 | 7 8. 435.34. 434B. 34. 434 B. 7 8 12 | 7 8. 435.43 4. 4 B. 3 4. 4 B. 7 8 13 | 7 8. 435.4 34. 4 B. 434. 4 B. 7 8 14 | 7 8. 435.43 4. 4 B. 3 4. 4 B. 7 8 15 | 7 8. 3 434 B.4.4. 4 B43.4 B. 7 8 16 | -------------------------------------------------------------------------------- /txt/apl.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║  APL ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ 1 │ w←⊃(⊃0⍴⍵){ ⍝┌┌─2─┐ monadic; use ↓ ║ 6 | ║ 2 │ (e a)←|⍺ ⍝├ 0 0 1 1 1 dyadic; use / ║ 7 | ║ 3 │ T←⌽⍣(0>⊃⌽⍺) ⍝└──→⍺⍺←─────┐ ║ 8 | ║ 4 │ Pad←⍵⍵⍉(T⊣)⍪⍵⍪(T⊢) ⍝ ┌⍺┐ ⌺ │ ║ 9 | ║ 5 │ need←(1+e),1↓⍴⍵ ⍝ ┌─────⍵⍵──┐┘ ║ 10 | ║ 6 │ a=0:(1↓need⍴0↑⍵)Pad(1↓need⍴0↑⊢⍵) ⍝ 0 0│1 2 3 4 5│0 0 Zero ║ 11 | ║ 7 │ a=1:(1↓need⍴1↑⍵)Pad(1↓need⍴1↑⊖⍵) ⍝ 1 1│1 2 3 4 5│5 5 Replicate ║ 12 | ║ 8 │ a=2:(⊖¯1↓need⍴⊢⍵)Pad(¯1↓need⍴⊖⍵) ⍝ 2 1│1 2 3 4 5│5 4 Reverse ║ 13 | ║ 9 │ a=3:(⊖⊢1↓need⍴⊢⍵)Pad(⊢1↓need⍴⊖⍵) ⍝ 3 2│1 2 3 4 5│4 3 Mirror ║ 14 | ║ 10 │ a=4:(⊖¯1↓need⍴⊖⍵)Pad(¯1↓need⍴⊢⍵) ⍝ 4 5│1 2 3 4 5│1 2 Wrap ║ 15 | ║ 11 │ }(¯1⌽⍳≢⍴⍵)/(⌽extra,¨⍺⊣0),⊂⍵ ⍝ └────⍵────┘ ║ 16 | ║ ║ 17 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 18 | -------------------------------------------------------------------------------- /txt/box.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | . 5 8 6 | . 5 8 7 | . 5 8 8 | . 5 8 9 | . 5 8 10 | . 5 8 11 | . 5 8 12 | . 5 8 13 | . 5 8 14 | . 5 8 15 | . 5 8 16 | . 5 8 17 | . 5 8 18 | . 5 8 19 | . 5 8 20 | . 5 8 21 | 3 5 8 22 | 3 4 1 8 23 | 3 4 1 8 24 | 3 4 1 8 25 | 3 4 1 8 26 | 3 4 1 8 27 | 3 4 1 8 28 | 3 4 1 8 29 | 3 4 1 8 30 | 3 1 8 31 | 3 1 8 32 | 3 8 33 | -------------------------------------------------------------------------------- /txt/box.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ BOX DRAWINGS ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ ┌┬┐ ╓╥╖ ┌┬┐ ┎┰┒ ┌╷┐ ╃╀╄ ╆╈╅ │╎┆┊ ┃╏┇┋ █ ▄████▄ ║ 6 | ║ ├┼┤─╟╫╢ ├┼┤─┠╂┨ ╶┼╴ ┽┼┾ ╊╋╉ │╎┆┊ ┃╏┇┋ ▉ ╱╲╱╲╳╳╳ ▐▌ ▐▌ ║ 7 | ║ └┴┘ ╙╨╜ └┴┘ ┖┸┚ └╵┘ ╅╁╆ ╄╇╃ │╎┆┊ ┃╏┇┋ ▊ ╲╱╲╱╳╳╳ ▄▀▀█▀ ▐▌ ║ 8 | ║ │ ║ │ ┃ ▋ ╱╲╱╲╳╳╳ ▄ ▐▄ ▐▌▀▀▄ ║ 9 | ║ ╒╤╕ ╔╦╗ ┍┯┑ ┏┳┓ ┏╻┓ ╭╽╮ ┟┲┱┧ ──── ━━━━ ▌ ╲╱╲╱╳╳╳ ▐▀ ▄▄ ▀▌ ▄▀▀ ▀▄ ▀ ║ 10 | ║ ╞╪╡═╠╬╣ ┝┿┥━┣╋┫ ╺╋╸ ╼╋╾ ┞┺┹┦ ╌╌╌╌ ╍╍╍╍ ▍ ▐ ▀██▀ ▌▐ ▄██▄ ▌ ║ 11 | ║ ╘╧╛ ╚╩╝ ┕┷┙ ┗┻┛ ┗╹┛ ╰╿╯ ┢┭┮┪ ┄┄┄┄ ┅┅┅┅ ▎ ▁▂▃▄▅▆▇█ ▀▄ ▄▄▀ ▐ ▀▀ ▌ ║ 12 | ║ ╔═╦═╗ ┌─┬─┐ ╭─┬─╮ ╭─┬─╮ ┡┵┶┩ ┉┉┉┉ ┉┉┉┉ ▏ █ ▀▄▄ ▄▀ ║ 13 | ║ ║┌╨┐║ │╔╧╗│ │╒╪╕│ │╓╁╖│ ░░▒▒▓▓██ █ █ █ ▐ ║ 14 | ║ ╠╡╳╞╣ ├╢╳╟┤ ├┼┼┼┤ ├╫╂╫┤ ▞▚ ▗▄▖ ▛▀▜ ╭╮ ░░▒▒▓▓██ █ █ ▐▌ █ ║ 15 | ║ ║└╥┘║ │╚╤╝│ │╘╪╛│ │╙╀╜│ ▚▞ ▐ ▌ ▌█▐ ╰╯ █ █ ▐▌ █ ║ 16 | ║ ╚═╩═╝ └─┴─┘ ╰─┴─╯ ╰─┴─╯ ▝▀▘ ▙▄▟ ╭╮ ╭╮ ▐▌▐▌ █ █ ║ 17 | ║ ┌─┬┐ ┌─┬┒ ┌─┲┓ ╓─╥╖ ╒═╤╕ ╔═╦╗ ╰┼──┼╯ ▐▌ █▄ ▐▌ █ ║ 18 | ║ │ ││ │ │┃ │ ┃┃ ║ ║║ │ ││ ║ ║║ ╲│╱ │ │ █ ▀▀▀ ▐▌ ║ 19 | ║ ├─┼┤ ├─╆┫ ┢━╋┫ ╟─╫╢ ╞═╪╡ ╠═╬╣ ─╳─ ╭┼──┼╮ ▐▌ █ ║ 20 | ║ └─┴┘ ┕━┻┛ ┗━┻┛ ╙─╨╜ ╘═╧╛ ╚═╩╝ ╱│╲ ╰╯ ╰╯ █▄ ▄█ ║ 21 | ║ ┌─┬─────────┬─────────┐ ▀████▀ ║ 22 | ║ │ └─┐ ┌───┐ ├───┬───┐ │ ┌───────────────────┐ ┌┮┭┬┬┲┱┬┬┬┐ ║ 23 | ║ ├─┐ │ └─┐ │ │ ╷ ╵ ╷ ╵ │ │ ╔═══╗ Some Text │▒ ┟┼┼┼┼╄╃┼┼┼┧ ║ 24 | ║ │ │ │ ╷ │ ╵ │ └───┴─┐ │ │ ╚═╦═╝ in the box │▒ ┞┼┼┼┼┼┼┼┼┼┦ ║ 25 | ║ │ │ └─┤ │ ╶─┴─────╴ │ │ ╞═╤══╩══╤═══════════╡▒ ┢╅┼┼┼┼┼┼┼╆┪ ║ 26 | ║ │ └─╴ │ │ ┌─────┬───┤ │ │ ├──┬──┤ │▒ ┡╃┼┼┼┼┼┼┼╄┩ ║ 27 | ║ │ ╶─┬─┤ └─┘ ╶─┐ │ ┌─┘ │ │ └──┴──┘ │▒ ├┼╆╈╅┼┼╁┼┼┤ ║ 28 | ║ ├─┐ │ ╵ ┌─────┤ │ ╵ ╶─┤ └───────────────────┘▒ ├┼╊╋╉┼┾╋┽┼┤ ║ 29 | ║ │ │ └─┐ │ ┌─╴ │ └─┬─┐ │ ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ ├┼╄╇╃┼┼╀┼┼┤ ║ 30 | ║ │ └─┐ └─┘ │ ╶─┴─┐ │ ╵ │ ├┼┼┼┼╆╅┼┼┼┤ ║ 31 | ║ │ ╶─┴─────┴───╴ ╵ │ ╶─┤ └┶┵┴┴┺┹┴┴┴┘ ║ 32 | ║ └─────────────────┴───┘ ║ 33 | ║ ║ 34 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 35 | -------------------------------------------------------------------------------- /txt/bqn.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | 7 8.A . D 8 6 | 7 8. A . DA7ABAB.A3BA7DABAB7A 7A7A.7AB3.ABAB3D37ABA3 A .7AD3 D3D3D 8 7 | 7 8. A B7.A37 ADA. 8 8 | 7 8.D 8 9 | 7 8.A . D 8 10 | 7 8. A 3A . 8 11 | 7 8. A 7A .7A . 8 12 | 7 8. A DA7AD A .7A7A D .7A D A . 8 13 | 7 8.D 8 14 | 7 8.A D A 3 8 15 | -------------------------------------------------------------------------------- /txt/bqn.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║  BQN ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ 1 │ NQueens ← { ║ 6 | ║ 2 │ Arr ← {>(⊑⊸⊏⟜𝕩∾1⊸⊑)¨/○⥊⟜(↕≢)¬(↕𝕨)∊⎉1𝕩⥊∘+⎉1‿2(-⟜↕¯1⊑≢𝕩)×⌜¯1‿0‿1} ║ 7 | ║ 3 │ 𝕩 Arr⍟(𝕩-1) ≍˘↕𝕩 ║ 8 | ║ 4 │ } ║ 9 | ║ 5 │ QueenCheck ← { ║ 10 | ║ 6 │ ! 1=≠≢𝕩 ║ 11 | ║ 7 │ ! (↕≠𝕩)≡∧𝕩 ║ 12 | ║ 8 │ ! ∧´⥊(=⌜˜↕≠𝕩)≥(|-⌜˜𝕩)=|-⌜˜↕≠𝕩 ║ 13 | ║ 9 │ } ║ 14 | ║ 10 │ QueenCheck˘ NQueens 8 ║ 15 | ║ ║ 16 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 17 | -------------------------------------------------------------------------------- /txt/braille.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | . 8 5 | . 8 6 | . 8 7 | . 8 8 | . 8 9 | . 8 10 | . 8 11 | . 8 12 | . 8 13 | . 8 14 | . 8 15 | . 8 16 | . 8 17 | . 8 18 | . 8 19 | . 8 20 | . 8 21 | . 8 22 | . 8 23 | . 8 24 | . 8 25 | . 8 26 | . 8 27 | . 8 28 | . 8 29 | . 8 30 | . 8 31 | . 8 32 | . 8 33 | . 8 34 | . 8 35 | . 8 36 | . 8 37 | -------------------------------------------------------------------------------- /txt/braille.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ BRAILLE ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⠀⠆⡐⠠⢂⠐⠄⢂⠰⢀⠂⡁⠂⠤⢁⠂⠤⢁⠂⠤⢁⠂⠤⢁⠂⠤⢁⠂⠤⢁⠂⡐⢈⠐⠠⠂⢄⠁⡂⠰⢀⠂⠔⡀⠢⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⠠⠐⡀║ 5 | ║⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⠰⢀⠂⠄⡁⠂⡄⠡⢈⡐⠠⢁⠂⠌⡐⢈⡐⠠⢂⠡⠌⡐⠠⠌⡐⠠⠌⡐⠠⠌⡐⠠⠌⡐⠠⠌⡐⡀⢂⢁⠂⠌⠡⢈⠄⠒⠠⢁⠂⠌⡐⠠⢁⠂⠤⢁⠂⡐⠄⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⠠⢈⠐⠠⠐║ 6 | ║⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⢀⠂⡐⠠⢂⠁⠆⡐⢈⡐⠠⢁⠄⡁⠂⢄⠁⡂⠌⡐⠠⠁⡄⢁⢂⠰⢀⢂⡁⠆⢠⠁⠂⠄⡁⠂⠄⠁⠂⠐⠁⢂⠐⠠⢁⠂⠌⡐⢁⠂⠌⣀⠃⠤⢈⡐⠠⢁⠂⠌⡐⢀⠢⠐⡈⠄⠂⠄⡁⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⠠⢈⠐⠠⢈⠐⠠║ 7 | ║⢂⠐⡀⢂⠐⡀⢂⠐⡀⢂⠐⡠⠈⠄⡁⠂⠌⡐⠠⠂⠄⣁⠂⡐⠈⡔⢈⡐⠄⠒⡈⠄⣃⠰⣈⠔⢢⡁⢆⠰⡈⠆⢌⡁⢂⠐⡀⠂⠐⡀⠄⠀⠀⠀⠀⠀⠈⠐⠈⠤⢈⠂⠄⠌⡐⠠⠠⢁⠂⠌⡐⠠⢁⠂⠡⠐⡈⠌⡐⠠⠌⡐⢀⠂⢂⠐⠄⢂⠐⠠⢈⠐⠠⢈⠐⠠⠈⠄║ 8 | ║⡀⢂⠐⡀⢂⠐⡀⢂⠌⡀⠒⠠⢁⢂⠐⡉⠐⡠⠁⠜⠠⢀⠆⠡⠌⡐⠠⠐⡈⢤⠱⣘⠤⡓⣌⠎⡥⢚⢌⡒⣡⠚⠤⡘⢠⠡⢀⡁⠂⠄⠀⠌⠀⠠⠀⠀⠀⠀⠀⠀⠀⠈⠌⡐⢈⠔⡁⠢⢈⠔⠠⢁⠂⠌⡁⢂⢁⠂⠤⢁⠂⡐⠄⢨⠀⠌⡐⠠⠌⡐⠠⢈⠐⠠⠈⠄⠡⠈║ 9 | ║⡐⢀⠂⡐⠠⢈⠐⡀⠂⠤⠑⠂⠄⢂⠂⠔⠡⡀⡑⠈⠔⠂⠌⡐⠰⠀⡅⢣⡜⢦⢛⡌⢧⡙⢦⡙⠴⣉⠦⡑⢦⢙⢢⢑⠢⡑⢂⠤⠁⡌⢀⠂⡈⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠈⠄⢂⡐⢁⠂⠌⠄⡡⠈⠔⠠⢁⠂⠌⡐⠠⠌⡐⠈⡄⠨⠐⠠⢁⠂⠄⡁⠂⠌⠠⠁⠌⠠⠁║ 10 | ║⠐⠠⢂⠁⢂⠁⡂⠌⡐⢂⠡⠘⡈⠄⠌⢂⠡⠐⡠⠉⠄⠃⡌⠄⡑⢬⡘⢧⣚⢥⣫⢜⣣⡝⢦⣹⢚⡤⡛⢜⠢⡍⢦⡉⢖⡡⢃⠆⡱⢀⢂⠂⠄⠡⠀⢂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠔⡈⠌⠰⠈⡄⠑⣈⠂⢡⠈⠔⠠⡁⢂⠄⠃⠄⡡⢈⠁⡂⠌⡐⠠⠡⠈⢄⠡⠈⠄⠡║ 11 | ║⢊⠐⠠⠌⣀⠒⡀⠒⣀⠢⠐⠡⢐⠈⡔⠈⡄⠃⠤⠑⣈⠡⢐⠨⣰⢣⣝⡳⣬⢳⡝⣮⢳⡜⣧⢳⣋⢶⡙⢮⡱⡌⢣⡜⢦⡑⢎⠰⣁⠂⢆⠩⢌⠠⡁⠄⡀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⢂⠉⡄⠃⠄⠃⡄⠘⡠⠌⢂⠡⠐⠂⠌⡐⠡⠐⡠⢁⠰⠐⠠⢁⠂⣁⠂⠄⠡⠈⠄║ 12 | ║⠂⠌⡐⠤⢀⠂⠔⠡⢀⠂⡡⢁⠢⠈⢄⠡⠄⢃⠰⠁⡄⠢⢁⠲⣥⢏⠶⣹⢞⡽⣺⣳⣟⣾⣵⣻⣞⣧⣛⣧⡳⣍⠖⡸⢒⡜⣌⠳⠄⡑⢎⠰⣈⠒⡰⠀⠄⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢌⠠⠉⠌⠒⠠⠑⡠⠌⡐⢂⠡⢉⡐⠠⠑⢂⡐⠄⢂⠡⠌⡀⠒⠠⠈⢄⠁⠊⠄║ 13 | ║⡉⡐⠀⠆⠂⠌⢂⢁⠂⡡⠐⡠⢂⠉⡄⠢⠘⡀⠆⢡⠐⣁⠊⣜⠶⣭⣛⡼⣫⢾⣽⣳⢿⣯⢿⡿⣽⣾⣻⣖⢿⡜⢯⡔⣩⠲⢥⠫⡔⣩⢂⡃⠆⡑⠠⠁⡐⠀⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠊⣁⠊⠡⠑⣈⠐⠰⠐⣈⠰⠀⡄⠃⠌⡄⢐⡈⠄⠢⢀⠅⡘⠠⢁⠂⠌⡁⠂║ 14 | ║⠠⠐⡉⠄⡉⠰⠈⠄⡂⢁⠆⡁⢂⠌⢠⠡⢁⠒⢨⠐⢂⠰⢈⡜⢧⣓⢧⡻⣵⣻⡼⣹⡟⣾⣻⡽⣹⢖⣣⠻⡬⣝⢣⡜⡠⢍⡏⡰⢱⡀⢆⠡⢒⠈⠄⡁⠀⢀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠒⠠⠌⡑⡈⢄⠊⣁⠒⣀⠢⠡⢠⠉⡐⠠⢂⠐⡨⠄⡁⢂⠤⢁⠂⠌⡐⠠⢉║ 15 | ║⡐⠡⠐⢂⠁⠆⡉⡐⢈⠄⢂⠌⠤⠘⡀⠆⢡⠘⢠⠘⢠⠁⢆⠸⢧⣫⢞⡵⣣⠷⣽⣣⢿⡜⣧⢯⡱⣋⠖⡭⡑⢎⠢⣘⢱⡈⢆⢡⢃⡜⢠⠑⠤⢈⠐⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢢⠉⠔⡈⠔⡐⢂⠡⠄⠒⣀⠢⢁⠢⠐⡁⠢⢁⠒⡀⢂⠌⠄⢂⡐⢈⡐⠠⢁⠂║ 16 | ║⠠⢁⠊⠄⢊⠐⠄⣁⠢⠌⢂⠌⠄⢃⠰⢈⠂⡌⠂⡜⢀⠎⢠⠉⣾⡱⣏⢾⣱⢿⡱⣏⢾⡹⢮⢷⣻⣼⡹⣒⡍⢢⠑⢠⢫⡜⢠⠂⣏⣆⢣⠉⢆⠡⡈⠄⡁⠄⠈⠀⠀⠀⠀⠀⠀⠀⠀⢀⠆⡘⢠⠁⡒⠄⢊⡐⠌⠡⠄⣂⠡⢂⠡⢂⠡⢂⢂⢁⠢⢈⡐⢂⠐⡠⠠⢁⠂⠌║ 17 | ║⢁⠢⠌⡈⠔⡈⠰⢀⠢⠘⠠⠌⡘⠠⢂⠡⠌⢠⢣⠖⣓⠮⣄⠊⢶⡝⣮⢳⢏⡞⡹⠜⠓⢛⡙⢒⠣⡞⣱⢣⠞⡡⠌⢠⡳⣘⠄⡒⣯⠞⡦⢉⠆⡑⠠⠒⠈⠀⠁⠈⠀⠀⠀⠀⠀⠀⠀⠠⠂⠁⠀⠈⠐⠌⢂⠰⢈⠡⠒⣀⠒⢠⠁⣂⠡⠂⡄⢂⢂⠡⠐⣀⠊⠄⡁⢂⠌⡐║ 18 | ║⠢⠐⢂⠁⠆⣈⠁⠆⡐⠉⠤⠑⡠⠃⢌⠰⢈⠢⢜⠢⣯⡓⢾⣻⢼⡹⣎⠷⠪⢘⡁⠩⠉⠀⠈⠈⠑⠈⡑⠋⠞⡱⢘⡰⣷⢩⢂⡑⠿⠛⠄⠁⠀⠀⠀⠀⠁⠈⠀⠁⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡘⢠⠁⠆⢡⠒⠠⡘⢀⠒⡀⠆⢡⠐⡈⠄⡂⠥⢀⠌⡐⠠⢁⠂⠄║ 19 | ║⠡⠑⡈⠰⠈⡄⡘⠠⣁⠩⢀⠃⠤⠑⡈⢄⠃⡔⠨⡗⢧⡉⣉⡷⣎⠷⣍⣎⣡⠂⠀⠰⢯⡁⠀⡀⠄⠀⠤⠉⢢⢍⠳⣟⢣⠃⠆⡐⠀⠀⠀⠀⠀⠀⠔⡂⠀⠀⡀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡅⠢⢘⠈⠤⠈⡅⠰⢁⢂⠡⠌⢂⠰⢁⠒⣀⠒⡈⡐⠠⢁⠂⠌⡐║ 20 | ║⡠⠃⠌⡐⠡⡐⢠⠡⠄⠢⢁⠊⠔⠡⠌⢂⠌⠄⢣⠘⡟⡔⢨⡷⣍⡻⣵⣚⠴⣫⡑⠦⢠⡈⢁⠀⠀⠀⢀⠈⠔⡊⢵⢫⡷⣉⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡌⠤⠑⢂⡉⢄⠃⡰⠁⡌⠠⠒⣈⠂⣁⠂⠆⣀⠒⠠⡐⢁⠂⠌⡐⠈║ 21 | ║⠡⠌⡐⡈⠔⠠⡁⠢⠌⡁⠆⡉⢄⢃⡘⠄⡊⢌⡐⠌⡹⢳⡀⢿⣧⣛⢶⣫⢟⡥⣏⡓⢆⡐⢀⠀⣈⢠⢠⣘⡴⣙⣮⢳⣟⠴⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⡀⠠⢀⠂⠀⠄⠀⠀⠀⠀⠀⢀⠒⡠⢘⠈⡔⠠⢊⠐⠤⠑⡠⠑⢂⠄⠒⡠⠌⡐⠠⠌⢂⡐⠈⡄⠃⢄⠡║ 22 | ║⠄⣂⠡⢐⡈⢡⠐⣁⠢⢁⠒⡈⢄⠢⠐⡌⡐⢂⠰⡈⠔⢫⣷⣛⡶⣏⡞⡱⣏⣟⢧⣛⡮⡽⣭⣛⢮⡽⣫⢿⡱⡿⣜⣳⢯⡓⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠂⠐⠀⠁⠠⠈⠀⠀⠀⠀⠀⠀⢀⠢⢁⠆⡁⠎⢠⠑⢂⡉⠄⡃⠄⢃⠌⡠⢃⠐⠤⢁⠒⡈⠄⠄⠃⢄⠡⠂⠌║ 23 | ║⠂⢄⠂⡡⠐⠂⡔⠀⠆⣁⠢⠁⠆⢌⠡⡐⠄⢃⠂⡅⢊⠤⢈⡑⢋⠼⣭⢳⣍⠞⣧⣛⡷⣛⢶⡹⣎⡷⣏⣯⠷⡙⣮⢇⡟⡌⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠌⠀⠁⠈⠀⠀⠀⠀⡠⠄⡰⢈⠂⡅⢊⡐⠌⡰⠁⡌⢂⠰⠈⡄⠩⣀⠒⡀⠆⠡⠒⡈⡐⠄⡉⠤⠉⠄⢂⠡⠌║ 24 | ║⠑⠂⢌⠠⢁⠃⠤⢉⠰⠀⢆⠉⡔⢈⠰⠠⡉⠄⣃⠰⢈⠄⣃⠰⢈⠄⣳⢯⣞⣳⣌⢳⡽⣫⢟⡽⡭⣛⡽⣒⣴⡹⣜⣫⢞⡰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠆⡑⢠⠁⠎⡐⠄⢢⢁⠂⠥⠐⡌⠠⠃⢄⠃⢄⢂⠡⠌⡁⠆⢡⠐⣈⠐⠤⢁⠊⠄⢂⠔║ 25 | ║⢁⠊⠄⣂⠡⠌⢂⠌⠤⠉⡄⢊⠐⠌⡄⢃⠰⠁⡄⢢⢁⠊⢄⠢⡁⢎⢸⡳⣞⢷⣎⢧⡹⣝⢾⣱⡳⣭⢷⣯⣘⡹⢯⣿⣞⠴⡁⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠘⡠⠑⡂⢩⠐⠌⡘⡀⠆⡉⢄⠃⢄⠃⡉⢄⠊⢄⠂⢒⠠⢁⡘⠀⢆⠠⠌⡐⠠⠌⠒⡈⠐║ 26 | ║⠡⠌⢂⠄⠒⡈⢄⠊⢄⡑⠠⠊⢌⠰⠐⡈⢄⢃⠰⢁⢂⠩⠄⡂⢅⠢⠌⢻⡼⣫⡞⣧⢳⡹⣞⢧⣻⣼⣻⡞⣷⠹⣌⠧⡙⢂⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠃⡔⠡⡘⡀⠎⡐⢡⠐⡡⠌⡐⠌⢂⡘⠠⢂⠌⢂⡘⠠⠌⠂⡄⢉⠄⢂⠒⡈⠔⡈⡐⠄⠡║ 27 | ║⠰⠈⠤⠘⢠⠁⡂⠌⡄⠄⢃⠡⢂⠢⠑⡈⢄⠊⡐⠌⡠⢂⡑⠨⠄⢢⠉⡄⠳⢽⡹⣎⢧⡝⣮⢏⡷⣚⡥⣛⢬⠳⣍⠖⡁⢘⣦⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⡄⠃⡌⠄⡃⠤⠑⡠⠑⢂⠡⡐⢂⠡⡘⠠⡐⢁⠆⠨⠄⡐⠡⣈⠡⠐⣈⠐⢂⠰⠐⣀⠒⠠⢈⠡║ 28 | ║⢂⠡⢂⠉⠄⣂⢁⠒⡀⠎⢠⠁⠆⢂⡑⠨⠄⢊⠤⠑⡠⠡⠄⢃⡘⠄⢊⠤⢁⠆⡹⢎⡗⡾⣱⢎⣡⢍⡒⠉⢊⠉⡘⢈⠰⠈⠐⠀⠈⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⡠⠊⢄⠱⠐⡨⠐⡡⠑⡠⢉⠤⢁⠂⡅⠒⢠⠑⡀⠃⠌⢂⠡⠘⡠⠄⢂⠡⠄⠊⠄⢂⠡⡀⠌⠄⡁⢂║ 29 | ║⠄⠒⠠⢉⡐⢀⢂⢂⠡⠘⡠⠘⡈⢄⠂⢅⠊⢄⠢⠑⡠⠑⡈⠆⠰⣈⠢⢐⡁⢢⠐⣩⢞⡱⣭⠞⣽⢺⡽⣺⢤⠣⠤⠡⡀⠘⡈⠠⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡘⠠⡑⠨⠄⢃⠰⢁⠰⠁⡔⢁⠢⠌⠰⣀⠩⢀⠆⠡⠉⡄⠃⠌⢡⠐⡈⠄⠒⡈⠔⡉⠄⢂⡐⢈⡐⠠⢁║ 30 | ║⡐⢉⠐⠤⠐⡈⠄⢂⠌⠡⠄⡑⢠⠂⠜⡀⢊⠄⠢⢑⡀⠣⠌⡈⠅⡄⠢⢡⠐⠡⢌⠰⣋⠷⣎⠻⣔⡣⡝⣥⣋⢇⠣⡁⠄⢡⠐⡡⠑⡀⠂⠁⠀⠀⠀⠀⠀⠀⠀⡡⠑⡠⢃⠘⡠⢁⠊⢄⠃⡰⢈⠰⢈⠡⡀⠆⢡⠈⠆⢡⠐⡉⡐⠂⠤⢁⡘⠠⢁⢂⠐⡈⠄⡐⠂⠄⡁⠂║ 31 | ║⠆⣈⠰⠀⠅⢂⡘⠠⢈⠒⡈⡐⠤⠘⢠⠘⢠⠈⠅⣂⠰⢁⠢⠡⠘⢠⠑⠂⡌⢡⠂⢥⣋⢞⣭⠳⣍⠳⣝⢶⡻⣎⢷⡑⠎⠄⡃⠄⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡡⠂⢅⠂⠅⡂⠥⠘⢠⠘⡀⠆⣁⠢⠁⡔⠨⠄⠊⠤⢁⠢⠐⡠⢉⠐⡄⠠⡁⠢⢀⠊⡐⠐⠠⢁⠂⠌⡀║ 32 | ║⠂⠄⢂⠉⡐⠂⠄⡡⢂⠂⢡⠐⠠⢃⠂⠌⠄⢊⡐⠄⢂⠂⠥⢈⡑⠄⢊⠡⡐⢂⡜⢢⢇⠞⣼⡳⣌⠱⣘⠪⡱⠍⠦⠑⡈⠆⠱⠈⠄⠐⠀⠠⠀⠂⢁⠀⠀⠀⠀⠀⠉⡄⢊⡐⢁⠢⠉⡄⢂⠡⠒⣀⠢⠡⣀⠃⠌⣁⠒⠠⢂⠡⠐⡠⠁⠤⠁⠤⢁⠂⠔⠠⢉⠐⡠⢈⠐⠠║ 33 | ║⢈⡐⢈⠐⠠⡁⢊⠐⠠⠘⠠⡈⢁⠂⠌⢌⠨⠄⠰⢈⠂⡡⠘⢠⠐⠌⢂⢡⢂⠇⡘⡜⡎⢎⡵⣳⢌⡒⠡⢊⡱⣙⠲⡃⠔⡘⠦⡑⡀⠀⠈⡅⢂⠡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠄⢃⠰⠈⠤⢁⠄⢂⠡⠠⠌⢂⠄⠌⣁⠂⠌⡐⠄⠡⢂⠉⡐⠠⠌⠠⢁⠂⡐⢀⠂⠌⡐║ 34 | ║⠂⡐⠠⢈⠡⠐⡀⢊⠡⢈⠡⢀⠃⠌⡈⠄⢂⠌⡁⢂⠡⠐⣁⠢⢌⡘⠤⡃⡌⢎⡱⢌⠵⣊⠶⣩⢖⡡⢁⠂⠴⣉⡓⠌⠠⢐⢡⢂⠅⡀⠒⡜⡠⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠐⠈⠐⠈⠄⠡⠌⠠⠌⡐⠠⢈⠔⡀⢊⠁⢂⠰⢀⠡⠈⠔⡀⢂⠐⠠⢈⠐⠠║ 35 | ║⠂⠄⡁⠂⠄⠡⠐⣀⠂⠂⠤⠁⠌⡐⠠⣁⢂⠂⣌⠰⣌⠳⣌⠳⡬⣘⢡⠒⣌⠲⡘⠮⡜⣌⢣⠓⣮⣑⠢⢈⠤⠑⠌⠐⠠⢈⠦⣩⢒⡅⢪⡑⠄⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⡀⠈⠀⠐⠀⠁⠂⡐⠀⠆⡈⠄⠂⠄⢂⠁⡂⠐⠠⢈⠐⠠⠈⠄║ 36 | ║⡁⠂⠄⠡⠈⠄⠡⠀⠌⡐⠠⢉⠐⠤⠑⡄⢊⠜⡠⠋⡔⡉⢆⢣⠕⣊⠆⢣⢆⡣⢝⢢⠑⢢⠡⢋⠴⡩⢆⠡⠂⠀⠀⠐⢀⠣⢎⢥⢣⠜⡥⠒⠈⠀⠀⠀⠀⠄⡁⢂⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠄⠠⢀⠡⠈⠄⠂⡀⠄⢀⠐⠠⢀⠈⠀⠁⠂⠐⠠⢁⠂⠄⡈⠄⡁⠂║ 37 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 38 | -------------------------------------------------------------------------------- /txt/chars.txt: -------------------------------------------------------------------------------- 1 | ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O 2 | P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~   3 | ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ 4 | Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ Ā ā 5 | Ă ă Ą ą Ć ć Ĉ ĉ Ċ ċ Č č Ď ď Đ đ Ē ē Ĕ ĕ Ė ė Ę ę Ě ě Ĝ ĝ Ğ ğ Ġ ġ Ģ ģ Ĥ ĥ Ħ ħ Ĩ ĩ Ī ī Ĭ ĭ Į į İ ı 6 | IJ ij Ĵ ĵ Ķ ķ ĸ Ĺ ĺ Ļ ļ Ľ ľ Ŀ ŀ Ł ł Ń ń Ņ ņ Ň ň ʼn Ŋ ŋ Ō ō Ŏ ŏ Ő ő Œ œ Ŕ ŕ Ŗ ŗ Ř ř Ś ś Ŝ ŝ Ş ş Š š 7 | Ţ ţ Ť ť Ŧ ŧ Ũ ũ Ū ū Ŭ ŭ Ů ů Ű ű Ų ų Ŵ ŵ Ŷ ŷ Ÿ Ź ź Ż ż Ž ž ſ ƀ Ɓ Ƃ ƃ Ƅ ƅ Ɔ Ƈ ƈ Ɖ Ɗ Ƌ ƌ ƍ Ǝ Ə Ɛ Ƒ 8 | ƒ Ɠ Ɣ ƕ Ɩ Ɨ Ƙ ƙ ƚ ƛ Ɯ Ɲ ƞ Ɵ Ơ ơ Ƣ ƣ Ƥ ƥ Ʀ Ƨ ƨ Ʃ ƪ ƫ Ƭ ƭ Ʈ Ư ư Ʊ Ʋ Ƴ ƴ Ƶ ƶ Ʒ Ƹ ƹ ƺ ƻ Ƽ ƽ ƾ ƿ ǀ ǁ 9 | ǂ ǃ DŽ Dž dž LJ Lj lj NJ Nj nj Ǎ ǎ Ǐ ǐ Ǒ ǒ Ǔ ǔ Ǖ ǖ Ǘ ǘ Ǚ ǚ Ǜ ǜ ǝ Ǟ ǟ Ǡ ǡ Ǣ ǣ Ǥ ǥ Ǧ ǧ Ǩ ǩ Ǫ ǫ Ǭ ǭ Ǯ ǯ ǰ DZ 10 | Dz dz Ǵ ǵ Ƕ Ƿ Ǹ ǹ Ǻ ǻ Ǽ ǽ Ǿ ǿ Ȁ ȁ Ȃ ȃ Ȅ ȅ Ȇ ȇ Ȉ ȉ Ȋ ȋ Ȍ ȍ Ȏ ȏ Ȑ ȑ Ȓ ȓ Ȕ ȕ Ȗ ȗ Ș ș Ț ț Ȝ ȝ Ȟ ȟ Ƞ ȡ 11 | Ȣ ȣ Ȥ ȥ Ȧ ȧ Ȩ ȩ Ȫ ȫ Ȭ ȭ Ȯ ȯ Ȱ ȱ Ȳ ȳ ȴ ȵ ȶ ȷ ȸ ȹ Ⱥ Ȼ ȼ Ƚ Ⱦ ȿ ɀ Ɂ ɂ Ƀ Ʉ Ʌ Ɇ ɇ Ɉ ɉ Ɋ ɋ Ɍ ɍ Ɏ ɏ ɐ ɑ 12 | ɒ ɓ ɔ ɕ ɖ ɗ ɘ ə ɚ ɛ ɜ ɝ ɞ ɟ ɠ ɡ ɢ ɣ ɤ ɥ ɦ ɧ ɨ ɩ ɪ ɫ ɬ ɭ ɮ ɯ ɰ ɱ ɲ ɳ ɴ ɵ ɶ ɷ ɸ ɹ ɺ ɻ ɼ ɽ ɾ ɿ ʀ ʁ 13 | ʂ ʃ ʄ ʅ ʆ ʇ ʈ ʉ ʊ ʋ ʌ ʍ ʎ ʏ ʐ ʑ ʒ ʓ ʔ ʕ ʖ ʗ ʘ ʙ ʚ ʛ ʜ ʝ ʞ ʟ ʠ ʡ ʢ ʣ ʤ ʥ ʦ ʧ ʨ ʩ ʪ ʫ ʬ ʭ ʮ ʯ ʰ ʱ 14 | ʲ ʳ ʴ ʵ ʶ ʷ ʸ ʹ ʺ ʻ ʼ ʽ ʾ ʿ ˀ ˁ ˂ ˃ ˄ ˅ ˆ ˇ ˈ ˉ ˊ ˋ ˌ ˍ ˎ ˏ ː ˑ ˒ ˓ ˔ ˕ ˖ ˗ ˘ ˙ ˚ ˛ ˜ ˝ ˞ ˟ ˠ ˡ 15 | ˢ ˣ ˤ ˥ ˦ ˧ ˨ ˩ ˪ ˫ ˬ ˭ ˮ ˯ ˰ ˱ ˲ ˳ ˴ ˵ ˶ ˷ ˸ ˹ ˺ ˻ ˼ ˽ ˾ ˿ ̀ ́ ̂ ̃ ̄ ̅ ̆ ̇ ̈ ̉ ̊ ̋ ̌ ̍ ̎ ̏ ̐ ̑ 16 | ̒ ̓ ̔ ̕ ̖ ̗ ̘ ̙ ̚ ̛ Ͱ ͱ Ͳ ͳ ʹ ͵ Ͷ ͷ ͺ ͻ ͼ ͽ ; Ϳ ΄ ΅ Ά · Έ Ή Ί Ό Ύ Ώ ΐ Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ Ν 17 | Ξ Ο Π Ρ Σ Τ Υ Φ Χ Ψ Ω Ϊ Ϋ ά έ ή ί ΰ α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ ς σ τ υ φ χ ψ ω ϊ ϋ ό ύ ώ 18 | Ϗ ϐ ϑ ϒ ϓ ϔ ϕ ϖ ϗ Ϙ ϙ Ϛ ϛ Ϝ ϝ Ϟ ϟ Ϡ ϡ Ϣ ϣ Ϥ ϥ Ϧ ϧ Ϩ ϩ Ϫ ϫ Ϭ ϭ Ϯ ϯ ϰ ϱ ϲ ϳ ϴ ϵ ϶ Ϸ ϸ Ϲ Ϻ ϻ ϼ Ͻ Ͼ 19 | Ͽ Ѐ Ё Ђ Ѓ Є Ѕ І Ї Ј Љ Њ Ћ Ќ Ѝ Ў Џ А Б В Г Д Е Ж З И Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ы Ь Э Ю 20 | Я а б в г д е ж з и й к л м н о п р с т у ф х ц ч ш щ ъ ы ь э ю я ѐ ё ђ ѓ є ѕ і ї ј љ њ ћ ќ ѝ ў 21 | џ Ѡ ѡ Ѣ ѣ Ѥ ѥ Ѧ ѧ Ѩ ѩ Ѫ ѫ Ѭ ѭ Ѯ ѯ Ѱ ѱ Ѳ ѳ Ѵ ѵ Ѷ ѷ Ѹ ѹ Ѻ ѻ Ѽ ѽ Ѿ ѿ Ҁ ҁ ҂ ҃ ҄ ҅ ҆ ҇ ҈ ҉ Ҋ ҋ Ҍ ҍ Ҏ 22 | ҏ Ґ ґ Ғ ғ Ҕ ҕ Җ җ Ҙ ҙ Қ қ Ҝ ҝ Ҟ ҟ Ҡ ҡ Ң ң Ҥ ҥ Ҧ ҧ Ҩ ҩ Ҫ ҫ Ҭ ҭ Ү ү Ұ ұ Ҳ ҳ Ҵ ҵ Ҷ ҷ Ҹ ҹ Һ һ Ҽ ҽ Ҿ 23 | ҿ Ӏ Ӂ ӂ Ӄ ӄ Ӆ ӆ Ӈ ӈ Ӊ ӊ Ӌ ӌ Ӎ ӎ ӏ Ӑ ӑ Ӓ ӓ Ӕ ӕ Ӗ ӗ Ә ә Ӛ ӛ Ӝ ӝ Ӟ ӟ Ӡ ӡ Ӣ ӣ Ӥ ӥ Ӧ ӧ Ө ө Ӫ ӫ Ӭ ӭ Ӯ 24 | ӯ Ӱ ӱ Ӳ ӳ Ӵ ӵ Ӷ ӷ Ӹ ӹ Ӻ ӻ Ӽ ӽ Ӿ ӿ Ԁ ԁ Ԃ ԃ Ԅ ԅ Ԇ ԇ Ԉ ԉ Ԋ ԋ Ԍ ԍ Ԏ ԏ Ԑ ԑ Ԓ ԓ Ԕ ԕ Ԗ ԗ Ԙ ԙ Ԛ ԛ Ԝ ԝ Ԟ 25 | ԟ Ԡ ԡ Ԣ ԣ Ԥ ԥ Ԧ ԧ Ԩ ԩ Ԫ ԫ Ԭ ԭ Ԯ ԯ ᐵ ᑈ ᴀ ᴁ ᴂ ᴃ ᴄ ᴅ ᴆ ᴇ ᴈ ᴉ ᴊ ᴋ ᴌ ᴍ ᴎ ᴏ ᴐ ᴑ ᴒ ᴓ ᴔ ᴕ ᴖ ᴗ ᴘ ᴙ ᴚ ᴛ ᴜ 26 | ᴝ ᴞ ᴟ ᴠ ᴡ ᴢ ᴣ ᴤ ᴥ ᴦ ᴧ ᴨ ᴩ ᴪ ᴫ ᴬ ᴭ ᴮ ᴯ ᴰ ᴱ ᴲ ᴳ ᴴ ᴵ ᴶ ᴷ ᴸ ᴹ ᴺ ᴻ ᴼ ᴽ ᴾ ᴿ ᵀ ᵁ ᵂ ᵃ ᵄ ᵅ ᵆ ᵇ ᵈ ᵉ ᵊ ᵋ ᵌ 27 | ᵎ ᵏ ᵐ ᵑ ᵒ ᵓ ᵔ ᵕ ᵖ ᵗ ᵘ ᵙ ᵚ ᵛ ᵜ ᵝ ᵞ ᵟ ᵠ ᵡ ᵢ ᵣ ᵤ ᵥ ᵦ ᵧ ᵨ ᵩ ᵪ ᵫ ᵬ ᵭ ᵮ ᵯ ᵰ ᵱ ᵲ ᵳ ᵴ ᵵ ᵶ ᵷ ᵸ ᵹ ᵺ ᵻ ᵼ ᵽ 28 | ᵾ ᵿ ᶀ ᶁ ᶂ ᶃ ᶄ ᶅ ᶆ ᶇ ᶈ ᶉ ᶊ ᶋ ᶌ ᶍ ᶎ ᶏ ᶐ ᶑ ᶒ ᶓ ᶔ ᶕ ᶖ ᶗ ᶘ ᶙ ᶚ ᶛ ᶜ ᶝ ᶞ ᶟ ᶠ ᶡ ᶢ ᶣ ᶤ ᶥ ᶦ ᶧ ᶨ ᶩ ᶪ ᶫ ᶬ ᶭ 29 | ᶮ ᶯ ᶰ ᶱ ᶲ ᶳ ᶴ ᶵ ᶶ ᶷ ᶸ ᶹ ᶺ ᶻ ᶼ ᶽ ᶾ ᶿ Ḁ ḁ Ḃ ḃ Ḅ ḅ Ḇ ḇ Ḉ ḉ Ḋ ḋ Ḍ ḍ Ḏ ḏ Ḑ ḑ Ḓ ḓ Ḕ ḕ Ḗ ḗ Ḙ ḙ Ḛ ḛ Ḝ ḝ 30 | Ḟ ḟ Ḡ ḡ Ḣ ḣ Ḥ ḥ Ḧ ḧ Ḩ ḩ Ḫ ḫ Ḭ ḭ Ḯ ḯ Ḱ ḱ Ḳ ḳ Ḵ ḵ Ḷ ḷ Ḹ ḹ Ḻ ḻ Ḽ ḽ Ḿ ḿ Ṁ ṁ Ṃ ṃ Ṅ ṅ Ṇ ṇ Ṉ ṉ Ṋ ṋ Ṍ ṍ 31 | Ṏ ṏ Ṑ ṑ Ṓ ṓ Ṕ ṕ Ṗ ṗ Ṙ ṙ Ṛ ṛ Ṝ ṝ Ṟ ṟ Ṡ ṡ Ṣ ṣ Ṥ ṥ Ṧ ṧ Ṩ ṩ Ṫ ṫ Ṭ ṭ Ṯ ṯ Ṱ ṱ Ṳ ṳ Ṵ ṵ Ṷ ṷ Ṹ ṹ Ṻ ṻ Ṽ ṽ 32 | Ṿ ṿ Ẁ ẁ Ẃ ẃ Ẅ ẅ Ẇ ẇ Ẉ ẉ Ẋ ẋ Ẍ ẍ Ẏ ẏ Ẑ ẑ Ẓ ẓ Ẕ ẕ ẖ ẗ ẘ ẙ ẚ ẛ ẜ ẝ ẞ ẟ Ạ ạ Ả ả Ấ ấ Ầ ầ Ẩ ẩ Ẫ ẫ Ậ ậ 33 | Ắ ắ Ằ ằ Ẳ ẳ Ẵ ẵ Ặ ặ Ẹ ẹ Ẻ ẻ Ẽ ẽ Ế ế Ề ề Ể ể Ễ ễ Ệ ệ Ỉ ỉ Ị ị Ọ ọ Ỏ ỏ Ố ố Ồ ồ Ổ ổ Ỗ ỗ Ộ ộ Ớ ớ Ờ ờ 34 | Ở ở Ỡ ỡ Ợ ợ Ụ ụ Ủ ủ Ứ ứ Ừ ừ Ử ử Ữ ữ Ự ự Ỳ ỳ Ỵ ỵ Ỷ ỷ Ỹ ỹ Ỻ ỻ Ỽ ỽ Ỿ ỿ ἀ ἁ ἂ ἃ ἄ ἅ ἆ ἇ Ἀ Ἁ Ἂ Ἃ Ἄ Ἅ 35 | Ἆ Ἇ ἐ ἑ ἒ ἓ ἔ ἕ Ἐ Ἑ Ἒ Ἓ Ἔ Ἕ ἠ ἡ ἢ ἣ ἤ ἥ ἦ ἧ Ἠ Ἡ Ἢ Ἣ Ἤ Ἥ Ἦ Ἧ ἰ ἱ ἲ ἳ ἴ ἵ ἶ ἷ Ἰ Ἱ Ἲ Ἳ Ἴ Ἵ Ἶ Ἷ ὀ ὁ 36 | ὂ ὃ ὄ ὅ Ὀ Ὁ Ὂ Ὃ Ὄ Ὅ ὐ ὑ ὒ ὓ ὔ ὕ ὖ ὗ Ὑ Ὓ Ὕ Ὗ ὠ ὡ ὢ ὣ ὤ ὥ ὦ ὧ Ὠ Ὡ Ὢ Ὣ Ὤ Ὥ Ὦ Ὧ ὰ ά ὲ έ ὴ ή ὶ ί ὸ ό 37 | ὺ ύ ὼ ώ ᾀ ᾁ ᾂ ᾃ ᾄ ᾅ ᾆ ᾇ ᾈ ᾉ ᾊ ᾋ ᾌ ᾍ ᾎ ᾏ ᾐ ᾑ ᾒ ᾓ ᾔ ᾕ ᾖ ᾗ ᾘ ᾙ ᾚ ᾛ ᾜ ᾝ ᾞ ᾟ ᾠ ᾡ ᾢ ᾣ ᾤ ᾥ ᾦ ᾧ ᾨ ᾩ ᾪ ᾫ 38 | ᾬ ᾭ ᾮ ᾯ ᾰ ᾱ ᾲ ᾳ ᾴ ᾶ ᾷ Ᾰ Ᾱ Ὰ Ά ᾼ ᾽ ι ᾿ ῀ ῁ ῂ ῃ ῄ ῆ ῇ Ὲ Έ Ὴ Ή ῌ ῍ ῎ ῏ ῐ ῑ ῒ ΐ ῖ ῗ Ῐ Ῑ Ὶ Ί ῝ ῞ ῟ ῠ 39 | ῡ ῢ ΰ ῤ ῥ ῦ ῧ Ῠ Ῡ Ὺ Ύ Ῥ ῭ ΅ ` ῲ ῳ ῴ ῶ ῷ Ὸ Ό Ὼ Ώ ῼ ´ ῾ ‐ ‑ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “ ” „ ‟ † ‡ • ‣ ․ 40 | ‥ … ‧ ‰ ‱ ′ ″ ‴ ‵ ‶ ‷ ‸ ‹ › ※ ‼ ‽ ‾ ‿ ⁀ ⁁ ⁂ ⁃ ⁄ ⁅ ⁆ ⁇ ⁈ ⁉ ⁊ ⁋ ⁌ ⁍ ⁎ ⁏ ⁐ ⁑ ⁒ ⁓ ⁔ ⁕ ⁖ ⁗ ⁘ ⁙ ⁚ ⁛ ⁜ 41 | ⁝ ⁞ ⁰ ⁱ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹ ⁺ ⁻ ⁼ ⁽ ⁾ ⁿ ₀ ₁ ₂ ₃ ₄ ₅ ₆ ₇ ₈ ₉ ₊ ₋ ₌ ₍ ₎ ₐ ₑ ₒ ₓ ₔ ₕ ₖ ₗ ₘ ₙ ₚ ₛ ₜ ₠ ₡ ₢ ₣ 42 | ₤ ₥ ₦ ₧ ₨ ₩ ₪ ₫ € ₭ ₮ ₯ ₰ ₱ ₲ ₳ ₴ ₵ ₶ ₷ ₸ ₹ ₺ ₻ ₼ ₽ ₾ ₿ ⃀ ℀ ℁ ℂ ℃ ℄ ℅ ℆ ℇ ℈ ℉ ℊ ℋ ℌ ℍ ℎ ℏ ℐ ℑ ℒ 43 | ℓ ℔ ℕ № ℗ ℘ ℙ ℚ ℛ ℜ ℝ ℞ ℟ ℠ ℡ ™ ℣ ℤ ℥ Ω ℧ ℨ ℩ K Å ℬ ℭ ℮ ℯ ℰ ℱ Ⅎ ℳ ℴ ℵ ℶ ℷ ℸ ℹ ℺ ℻ ℼ ℽ ℾ ℿ ⅀ ⅁ ⅂ 44 | ⅃ ⅄ ⅅ ⅆ ⅇ ⅈ ⅉ ⅊ ⅋ ⅌ ⅍ ⅎ ⅏ ⅐ ⅑ ⅒ ⅓ ⅔ ⅕ ⅖ ⅗ ⅘ ⅙ ⅚ ⅛ ⅜ ⅝ ⅞ ⅟ Ⅰ Ⅱ Ⅲ Ⅳ Ⅴ Ⅵ Ⅶ Ⅷ Ⅸ Ⅹ Ⅺ Ⅻ Ⅼ Ⅽ Ⅾ Ⅿ ⅰ ⅱ ⅲ 45 | ⅳ ⅴ ⅵ ⅶ ⅷ ⅸ ⅹ ⅺ ⅻ ⅼ ⅽ ⅾ ⅿ ↀ ↁ ↂ Ↄ ↄ ↅ ↆ ↉ ↊ ↋ ← ↑ → ↓ ↔ ↕ ↖ ↗ ↘ ↙ ↚ ↛ ↜ ↝ ↞ ↟ ↠ ↡ ↢ ↣ ↤ ↥ ↦ ↧ ↨ 46 | ↩ ↪ ↫ ↬ ↭ ↮ ↯ ↰ ↱ ↲ ↳ ↴ ↵ ↶ ↷ ↸ ↹ ↺ ↻ ↼ ↽ ↾ ↿ ⇀ ⇁ ⇂ ⇃ ⇄ ⇅ ⇆ ⇇ ⇈ ⇉ ⇊ ⇋ ⇌ ⇍ ⇎ ⇏ ⇐ ⇑ ⇒ ⇓ ⇔ ⇕ ⇖ ⇗ ⇘ 47 | ⇙ ⇚ ⇛ ⇜ ⇝ ⇞ ⇟ ⇠ ⇡ ⇢ ⇣ ⇤ ⇥ ⇦ ⇧ ⇨ ⇩ ⇪ ⇫ ⇬ ⇭ ⇮ ⇯ ⇰ ⇱ ⇲ ⇳ ⇴ ⇵ ⇶ ⇷ ⇸ ⇹ ⇺ ⇻ ⇼ ⇽ ⇾ ⇿ ∀ ∁ ∂ ∃ ∄ ∅ ∆ ∇ ∈ 48 | ∉ ∊ ∋ ∌ ∍ ∎ ∏ ∐ ∑ − ∓ ∔ ∕ ∖ ∗ ∘ ∙ √ ∛ ∜ ∝ ∞ ∟ ∠ ∡ ∢ ∣ ∤ ∥ ∦ ∧ ∨ ∩ ∪ ∫ ∬ ∭ ∮ ∯ ∰ ∱ ∲ ∳ ∴ ∵ ∶ ∷ ∸ 49 | ∹ ∺ ∻ ∼ ∽ ∾ ∿ ≀ ≁ ≂ ≃ ≄ ≅ ≆ ≇ ≈ ≉ ≊ ≋ ≌ ≍ ≎ ≏ ≐ ≑ ≒ ≓ ≔ ≕ ≖ ≗ ≘ ≙ ≚ ≛ ≜ ≝ ≞ ≟ ≠ ≡ ≢ ≣ ≤ ≥ ≦ ≧ ≨ 50 | ≩ ≪ ≫ ≬ ≭ ≮ ≯ ≰ ≱ ≲ ≳ ≴ ≵ ≶ ≷ ≸ ≹ ≺ ≻ ≼ ≽ ≾ ≿ ⊀ ⊁ ⊂ ⊃ ⊄ ⊅ ⊆ ⊇ ⊈ ⊉ ⊊ ⊋ ⊌ ⊍ ⊎ ⊏ ⊐ ⊑ ⊒ ⊓ ⊔ ⊕ ⊖ ⊗ ⊘ 51 | ⊙ ⊚ ⊛ ⊜ ⊝ ⊞ ⊟ ⊠ ⊡ ⊢ ⊣ ⊤ ⊥ ⊦ ⊧ ⊨ ⊩ ⊪ ⊫ ⊬ ⊭ ⊮ ⊯ ⊰ ⊱ ⊲ ⊳ ⊴ ⊵ ⊶ ⊷ ⊸ ⊹ ⊺ ⊻ ⊼ ⊽ ⊾ ⊿ ⋀ ⋁ ⋂ ⋃ ⋄ ⋅ ⋆ ⋇ ⋈ 52 | ⋉ ⋊ ⋋ ⋌ ⋍ ⋎ ⋏ ⋐ ⋑ ⋒ ⋓ ⋔ ⋕ ⋖ ⋗ ⋘ ⋙ ⋚ ⋛ ⋜ ⋝ ⋞ ⋟ ⋠ ⋡ ⋢ ⋣ ⋤ ⋥ ⋦ ⋧ ⋨ ⋩ ⋪ ⋫ ⋬ ⋭ ⋮ ⋯ ⋰ ⋱ ⋲ ⋳ ⋴ ⋵ ⋶ ⋷ ⋸ 53 | ⋹ ⋺ ⋻ ⋼ ⋽ ⋾ ⋿ ⌀ ⌂ ⌅ ⌈ ⌉ ⌊ ⌋ ⌌ ⌍ ⌎ ⌏ ⌐ ⌑ ⌕ ⌗ ⌘ ⌙ ⌜ ⌝ ⌞ ⌟ ⌠ ⌡ ⌢ ⌣ ⌤ ⌥ 〈 〉 ⌵ ⌶ ⌷ ⌸ ⌹ ⌺ ⌻ ⌼ ⌽ ⌾ ⌿ ⍀ 54 | ⍁ ⍂ ⍃ ⍄ ⍅ ⍆ ⍇ ⍈ ⍉ ⍊ ⍋ ⍌ ⍍ ⍎ ⍏ ⍐ ⍑ ⍒ ⍓ ⍔ ⍕ ⍖ ⍗ ⍘ ⍙ ⍚ ⍛ ⍜ ⍝ ⍞ ⍟ ⍠ ⍡ ⍢ ⍣ ⍤ ⍥ ⍦ ⍧ ⍨ ⍩ ⍪ ⍫ ⍬ ⍭ ⍮ ⍯ ⍰ 55 | ⍱ ⍲ ⍳ ⍴ ⍵ ⍶ ⍷ ⍸ ⍹ ⍺ ⎅ ⎈ ⎉ ⎊ ⎋ ⎌ ⎏ ⎐ ⎑ ⎒ ⎕ ⎛ ⎜ ⎝ ⎞ ⎟ ⎠ ⎡ ⎢ ⎣ ⎤ ⎥ ⎦ ⎧ ⎨ ⎩ ⎪ ⎫ ⎬ ⎭ ⎮ ⎯ ⎰ ⎱ ⎲ ⎳ ⎴ ⎵ 56 | ⎶ ⎷ ⏍ ⏎ ⏚ ⏜ ⏝ ⏞ ⏟ ⏠ ⏡ ⏩ ⏪ ⏫ ⏬ ⏭ ⏮ ⏯ ⏴ ⏵ ⏶ ⏷ ⏸ ⏹ ⏺ ⏻ ⏼ ⏽ ⏾ ␀ ␁ ␂ ␃ ␄ ␅ ␆ ␇ ␈ ␉ ␊ ␋ ␌ ␍ ␎ ␏ ␐ ␑ ␒ 57 | ␓ ␔ ␕ ␖ ␗ ␘ ␙ ␚ ␛ ␜ ␝ ␞ ␟ ␠ ␡ ␢ ␣ ␤ ␥ ␦ Ⓐ Ⓑ Ⓒ Ⓓ Ⓔ Ⓕ Ⓖ Ⓗ Ⓘ Ⓙ Ⓚ Ⓛ Ⓜ Ⓝ Ⓞ Ⓟ Ⓠ Ⓡ Ⓢ Ⓣ Ⓤ Ⓥ Ⓦ Ⓧ Ⓨ Ⓩ ⓐ ⓑ 58 | ⓒ ⓓ ⓔ ⓕ ⓖ ⓗ ⓘ ⓙ ⓚ ⓛ ⓜ ⓝ ⓞ ⓟ ⓠ ⓡ ⓢ ⓣ ⓤ ⓥ ⓦ ⓧ ⓨ ⓩ ─ ━ │ ┃ ┄ ┅ ┆ ┇ ┈ ┉ ┊ ┋ ┌ ┍ ┎ ┏ ┐ ┑ ┒ ┓ └ ┕ ┖ ┗ 59 | ┘ ┙ ┚ ┛ ├ ┝ ┞ ┟ ┠ ┡ ┢ ┣ ┤ ┥ ┦ ┧ ┨ ┩ ┪ ┫ ┬ ┭ ┮ ┯ ┰ ┱ ┲ ┳ ┴ ┵ ┶ ┷ ┸ ┹ ┺ ┻ ┼ ┽ ┾ ┿ ╀ ╁ ╂ ╃ ╄ ╅ ╆ ╇ 60 | ╈ ╉ ╊ ╋ ╌ ╍ ╎ ╏ ═ ║ ╒ ╓ ╔ ╕ ╖ ╗ ╘ ╙ ╚ ╛ ╜ ╝ ╞ ╟ ╠ ╡ ╢ ╣ ╤ ╥ ╦ ╧ ╨ ╩ ╪ ╫ ╬ ╭ ╮ ╯ ╰ ╱ ╲ ╳ ╴ ╵ ╶ ╷ 61 | ╸ ╹ ╺ ╻ ╼ ╽ ╾ ╿ ▀ ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ ▉ ▊ ▋ ▌ ▍ ▎ ▏ ▐ ░ ▒ ▓ ▔ ▕ ▖ ▗ ▘ ▙ ▚ ▛ ▜ ▝ ▞ ▟ ■ □ ▢ ▣ ▤ ▥ ▦ ▧ 62 | ▨ ▩ ▪ ▫ ▬ ▭ ▮ ▯ ▰ ▱ ▲ △ ▴ ▵ ▶ ▷ ▸ ▹ ► ▻ ▼ ▽ ▾ ▿ ◀ ◁ ◂ ◃ ◄ ◅ ◆ ◇ ◈ ◉ ◊ ○ ◌ ◍ ◎ ● ◐ ◑ ◒ ◓ ◔ ◕ ◖ ◗ 63 | ◘ ◙ ◚ ◛ ◜ ◝ ◞ ◟ ◠ ◡ ◢ ◣ ◤ ◥ ◦ ◧ ◨ ◩ ◪ ◫ ◬ ◭ ◮ ◯ ◰ ◱ ◲ ◳ ◴ ◵ ◶ ◷ ◸ ◹ ◺ ◻ ◼ ◽ ◾ ◿ ☀ ☁ ☂ ☃ ☄ ★ ☆ ☇ 64 | ☈ ☉ ☊ ☋ ☌ ☍ ☖ ☗ ☙ ☡ ☥ ☭ ☮ ☯ ☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷ ☸ ☹ ☺ ☻ ☼ ☽ ☾ ☿ ♀ ♁ ♂ ♃ ♄ ♅ ♆ ♇ ♈ ♉ ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ 65 | ♒ ♓ ♔ ♕ ♖ ♗ ♘ ♙ ♚ ♛ ♜ ♝ ♞ ♟ ♠ ♡ ♢ ♣ ♤ ♥ ♦ ♧ ♨ ♩ ♪ ♫ ♬ ♭ ♮ ♯ ♿ ⚀ ⚁ ⚂ ⚃ ⚄ ⚅ ⚆ ⚇ ⚈ ⚉ ⚊ ⚋ ⚌ ⚍ ⚎ ⚏ ⚐ 66 | ⚑ ⚓ ⚔ ⚕ ⚖ ⚗ ⚘ ⚙ ⚚ ⚜ ⚞ ⚟ ⚠ ⚡ ⚪ ⚫ ⚬ ⚭ ⚮ ⚯ ⚲ ⚳ ⚴ ⚵ ⚶ ⚷ ⚸ ⚹ ⚺ ⚻ ⚼ ⛄ ⛅ ⛆ ⛇ ⛉ ⛊ ⛋ ⛎ ⛏ ⛔ ⛝ ⛞ ⛢ ⛣ ⛨ ⛩ ⛪ 67 | ⛫ ⛬ ⛭ ⛮ ⛯ ⛰ ⛱ ⛲ ⛳ ⛴ ⛵ ⛶ ⛸ ⛹ ⛺ ⛻ ⛼ ⛾ ⛿ ✀ ✁ ✂ ✃ ✄ ✅ ✈ ✉ ✊ ✋ ✌ ✎ ✏ ✐ ✑ ✒ ✓ ✔ ✕ ✖ ✗ ✘ ✙ ✚ ✛ ✜ ✝ ✞ ✟ 68 | ✠ ✡ ✢ ✣ ✤ ✥ ✦ ✧ ✨ ❌ ❍ ❎ ❏ ❐ ❑ ❒ ❓ ❔ ❕ ❖ ❗ ❘ ❙ ❚ ❛ ❜ ❝ ❞ ❟ ❠ ❡ ❢ ❣ ❤ ❥ ❦ ❧ ❨ ❩ ❪ ❫ ❬ ❭ ❮ ❯ ❰ ❱ ❲ 69 | ❳ ❴ ❵ ➔ ➕ ➖ ➗ ➘ ➙ ➚ ➛ ➜ ➝ ➞ ➟ ➠ ➡ ➢ ➣ ➤ ➥ ➦ ➧ ➨ ➩ ➪ ➫ ➬ ➭ ➮ ➯ ➰ ➱ ➲ ➳ ➴ ➵ ➶ ➷ ➸ ➹ ➺ ➻ ➼ ➽ ➾ ➿ ⟀ 70 | ⟁ ⟂ ⟃ ⟄ ⟅ ⟆ ⟇ ⟈ ⟉ ⟊ ⟋ ⟌ ⟍ ⟎ ⟏ ⟐ ⟑ ⟒ ⟓ ⟔ ⟕ ⟖ ⟗ ⟘ ⟙ ⟚ ⟛ ⟜ ⟝ ⟞ ⟟ ⟠ ⟡ ⟢ ⟣ ⟤ ⟥ ⟦ ⟧ ⟨ ⟩ ⟪ ⟫ ⟬ ⟭ ⟮ ⟯ ⟰ 71 | ⟱ ⟲ ⟳ ⟴ ⟵ ⟶ ⟷ ⟸ ⟹ ⟺ ⟻ ⟼ ⟽ ⟾ ⟿ ⠀ ⠁ ⠂ ⠃ ⠄ ⠅ ⠆ ⠇ ⠈ ⠉ ⠊ ⠋ ⠌ ⠍ ⠎ ⠏ ⠐ ⠑ ⠒ ⠓ ⠔ ⠕ ⠖ ⠗ ⠘ ⠙ ⠚ ⠛ ⠜ ⠝ ⠞ ⠟ ⠠ 72 | ⠡ ⠢ ⠣ ⠤ ⠥ ⠦ ⠧ ⠨ ⠩ ⠪ ⠫ ⠬ ⠭ ⠮ ⠯ ⠰ ⠱ ⠲ ⠳ ⠴ ⠵ ⠶ ⠷ ⠸ ⠹ ⠺ ⠻ ⠼ ⠽ ⠾ ⠿ ⡀ ⡁ ⡂ ⡃ ⡄ ⡅ ⡆ ⡇ ⡈ ⡉ ⡊ ⡋ ⡌ ⡍ ⡎ ⡏ ⡐ 73 | ⡑ ⡒ ⡓ ⡔ ⡕ ⡖ ⡗ ⡘ ⡙ ⡚ ⡛ ⡜ ⡝ ⡞ ⡟ ⡠ ⡡ ⡢ ⡣ ⡤ ⡥ ⡦ ⡧ ⡨ ⡩ ⡪ ⡫ ⡬ ⡭ ⡮ ⡯ ⡰ ⡱ ⡲ ⡳ ⡴ ⡵ ⡶ ⡷ ⡸ ⡹ ⡺ ⡻ ⡼ ⡽ ⡾ ⡿ ⢀ 74 | ⢁ ⢂ ⢃ ⢄ ⢅ ⢆ ⢇ ⢈ ⢉ ⢊ ⢋ ⢌ ⢍ ⢎ ⢏ ⢐ ⢑ ⢒ ⢓ ⢔ ⢕ ⢖ ⢗ ⢘ ⢙ ⢚ ⢛ ⢜ ⢝ ⢞ ⢟ ⢠ ⢡ ⢢ ⢣ ⢤ ⢥ ⢦ ⢧ ⢨ ⢩ ⢪ ⢫ ⢬ ⢭ ⢮ ⢯ ⢰ 75 | ⢱ ⢲ ⢳ ⢴ ⢵ ⢶ ⢷ ⢸ ⢹ ⢺ ⢻ ⢼ ⢽ ⢾ ⢿ ⣀ ⣁ ⣂ ⣃ ⣄ ⣅ ⣆ ⣇ ⣈ ⣉ ⣊ ⣋ ⣌ ⣍ ⣎ ⣏ ⣐ ⣑ ⣒ ⣓ ⣔ ⣕ ⣖ ⣗ ⣘ ⣙ ⣚ ⣛ ⣜ ⣝ ⣞ ⣟ ⣠ 76 | ⣡ ⣢ ⣣ ⣤ ⣥ ⣦ ⣧ ⣨ ⣩ ⣪ ⣫ ⣬ ⣭ ⣮ ⣯ ⣰ ⣱ ⣲ ⣳ ⣴ ⣵ ⣶ ⣷ ⣸ ⣹ ⣺ ⣻ ⣼ ⣽ ⣾ ⣿ ⤀ ⤁ ⤂ ⤃ ⤄ ⤅ ⤆ ⤇ ⤈ ⤉ ⤊ ⤋ ⤌ ⤍ ⤎ ⤏ ⤐ 77 | ⤑ ⤒ ⤓ ⤔ ⤕ ⤖ ⤗ ⤘ ⤙ ⤚ ⤛ ⤜ ⤝ ⤞ ⤟ ⤠ ⤡ ⤢ ⤣ ⤤ ⤥ ⤦ ⤧ ⤨ ⤩ ⤪ ⤫ ⤬ ⤭ ⤮ ⤯ ⤰ ⤱ ⤲ ⤳ ⤴ ⤵ ⤶ ⤷ ⤸ ⤹ ⤺ ⤻ ⤼ ⤽ ⤾ ⤿ ⥀ 78 | ⥁ ⥂ ⥃ ⥄ ⥅ ⥆ ⥇ ⥈ ⥉ ⥊ ⥋ ⥌ ⥍ ⥎ ⥏ ⥐ ⥑ ⥒ ⥓ ⥔ ⥕ ⥖ ⥗ ⥘ ⥙ ⥚ ⥛ ⥜ ⥝ ⥞ ⥟ ⥠ ⥡ ⥢ ⥣ ⥤ ⥥ ⥦ ⥧ ⥨ ⥩ ⥪ ⥫ ⥬ ⥭ ⥮ ⥯ ⥰ 79 | ⥱ ⥲ ⥳ ⥴ ⥵ ⥶ ⥷ ⥸ ⥹ ⥺ ⥻ ⥼ ⥽ ⥾ ⥿ ⦀ ⦁ ⦂ ⦃ ⦄ ⦅ ⦆ ⦇ ⦈ ⦉ ⦊ ⦋ ⦌ ⦍ ⦎ ⦏ ⦐ ⦑ ⦒ ⦓ ⦔ ⦕ ⦖ ⦗ ⦘ ⦙ ⦚ ⦛ ⦜ ⦝ ⦞ ⦟ ⦠ 80 | ⦡ ⦢ ⦣ ⦤ ⦥ ⦦ ⦧ ⦨ ⦩ ⦪ ⦫ ⦬ ⦭ ⦮ ⦯ ⦰ ⦱ ⦲ ⦳ ⦴ ⦵ ⦶ ⦷ ⦸ ⦹ ⦺ ⦻ ⦼ ⦽ ⦾ ⦿ ⧀ ⧁ ⧂ ⧃ ⧄ ⧅ ⧆ ⧇ ⧈ ⧉ ⧊ ⧋ ⧌ ⧍ ⧎ ⧏ ⧐ 81 | ⧑ ⧒ ⧓ ⧔ ⧕ ⧖ ⧗ ⧘ ⧙ ⧚ ⧛ ⧜ ⧝ ⧞ ⧟ ⧠ ⧡ ⧢ ⧣ ⧤ ⧥ ⧦ ⧧ ⧨ ⧩ ⧪ ⧫ ⧬ ⧭ ⧮ ⧯ ⧰ ⧱ ⧲ ⧳ ⧴ ⧵ ⧶ ⧷ ⧸ ⧹ ⧺ ⧻ ⧼ ⧽ ⧾ ⧿ ⨀ 82 | ⨁ ⨂ ⨃ ⨄ ⨅ ⨆ ⨇ ⨈ ⨉ ⨋ ⨌ ⨍ ⨎ ⨏ ⨐ ⨑ ⨒ ⨓ ⨔ ⨕ ⨖ ⨗ ⨘ ⨙ ⨚ ⨛ ⨜ ⨢ ⨣ ⨤ ⨥ ⨦ ⨧ ⨨ ⨩ ⨪ ⨫ ⨬ ⨭ ⨮ ⨯ ⨰ ⨱ ⨲ ⨳ ⨴ ⨵ ⩑ 83 | ⩒ ⩪ ⩫ ⫲ ⫳ ⫻ ⫽ ⫿ ⬀ ⬁ ⬂ ⬃ ⬄ ⬅ ⬆ ⬇ ⬈ ⬉ ⬊ ⬋ ⬌ ⬍ ⬎ ⬏ ⬐ ⬑ ⬒ ⬓ ⬔ ⬕ ⬖ ⬗ ⬘ ⬙ ⬚ ⬛ ⬜ ⬝ ⬞ ⬤ ⬰ ⬱ ⬲ ⬳ ⬴ ⬵ ⬶ ⬷ 84 | ⬸ ⬹ ⬺ ⬻ ⬼ ⬽ ⬾ ⬿ ⭀ ⭁ ⭂ ⭃ ⭄ ⭅ ⭆ ⭇ ⭈ ⭉ ⭊ ⭋ ⭌ ⭍ ⭎ ⭏ ⭘ ⭠ ⭡ ⭢ ⭣ ⭤ ⭥ ⭦ ⭧ ⭨ ⭩ ⭪ ⭫ ⭬ ⭭ ⭮ ⭯ ⭰ ⭱ ⭲ ⭳ ⭶ ⭷ ⭸ 85 | ⭹ ⭺ ⭻ ⭼ ⭽ ⭾ ⭿ ⮀ ⮁ ⮂ ⮃ ⮄ ⮅ ⮆ ⮇ ⮌ ⮍ ⮎ ⮏ ⮔ ⮕ ⮜ ⮝ ⮞ ⮟ ⮨ ⮩ ⮪ ⮫ ⮬ ⮭ ⮮ ⮯ ⮸ ⯐ Ⱡ ⱡ Ɫ Ᵽ Ɽ ⱥ ⱦ Ⱨ ⱨ Ⱪ ⱪ Ⱬ ⱬ 86 | Ɑ Ɱ Ɐ Ɒ ⱱ Ⱳ ⱳ ⱴ Ⱶ ⱶ ⱷ ⱸ ⱹ ⱺ ⱻ ⱼ ⱽ Ȿ Ɀ ⸛ ⸞ ⸟ ⸠ ⸮ ⹕ ⹖ ⹗ ⹘ 〚 〛 ꜝ ꜠ ꜡ Ꜣ ꜣ Ꜥ ꜥ Ꜧ ꜧ Ꜩ ꜩ Ꜫ ꜫ Ꜭ ꜭ Ꜯ ꜯ ꜰ 87 | ꜱ Ꜳ ꜳ Ꜵ ꜵ Ꜷ ꜷ Ꜹ ꜹ Ꜻ ꜻ Ꜽ ꜽ Ꜿ ꜿ Ꝁ ꝁ Ꝃ ꝃ Ꝅ ꝅ Ꝇ ꝇ Ꝉ ꝉ Ꝋ ꝋ Ꝍ ꝍ Ꝏ ꝏ Ꝑ ꝑ Ꝓ ꝓ Ꝕ ꝕ Ꝗ ꝗ Ꝙ ꝙ Ꝛ ꝛ Ꝝ ꝝ Ꝟ ꝟ Ꝡ 88 | ꝡ Ꝣ ꝣ Ꝥ ꝥ Ꝧ ꝧ Ꝩ ꝩ Ꝫ ꝫ Ꝭ ꝭ Ꝯ ꝯ ꝰ ꝱ ꝲ ꝳ ꝴ ꝵ ꝶ ꝷ ꝸ Ꝺ ꝺ Ꝼ ꝼ Ᵹ Ꝿ ꝿ Ꞁ ꞁ Ꞃ ꞃ Ꞅ ꞅ Ꞇ ꞇ ꞈ ꞉ ꞊ Ꞌ ꞌ Ɥ ꞎ ꞏ Ꞑ 89 | ꞑ Ꞓ ꞓ ꞔ ꞕ Ꞗ ꞗ Ꞙ ꞙ Ꞛ ꞛ Ꞝ ꞝ Ꞟ ꞟ Ꞡ ꞡ Ꞣ ꞣ Ꞥ ꞥ Ꞧ ꞧ Ꞩ ꞩ Ɦ Ɜ Ɡ Ɬ Ɪ ꞯ Ʞ Ʇ Ʝ Ꭓ Ꞵ ꞵ Ꞷ ꞷ Ꞹ ꞹ Ꞻ ꞻ Ꞽ ꞽ Ꞿ ꞿ Ꟁ 90 | ꟁ Ꟃ ꟃ Ꞔ Ʂ Ᶎ Ꟈ ꟈ Ꟊ ꟊ Ꟑ ꟑ ꟓ ꟕ Ꟗ ꟗ Ꟙ ꟙ ꟲ ꟳ ꟴ Ꟶ ꟶ ꟷ ꟸ ꟹ ꟺ ꟻ ꟼ ꟽ ꟾ ꟿ ꭓ                91 |                                                 92 |                                                 93 |                                                 94 |                                                 95 |                                                 96 |                                                 97 |                                                 98 |                                                 99 |                                                 100 |                                                 101 |                                                 102 |                                                 103 |                                                 104 |                                                 105 |                                                 106 |                                                 107 |                                                 108 |                                                 109 |                                                 110 |                                                 111 |                                                 112 |                                                 113 |                                                 114 |                                                 115 |                                                 116 |                                                 117 |                                               ff fi 118 | fl ffi ffl ſt st 𜰡 𜰢 𜰣 𜰤 𜰥 𜰦 𜰧 𜰨 𜰩 𜰪 𜰫 𜰬 𜰭 𜰮 𜰯 𜲎 𜴀 𜴁 𜴂 𜴃 𜴄 𜴅 𜴆 𜴇 𜴈 𜴉 𜴊 𜴋 𜴌 𜴍 𜴎 𜴏 𜴐 𜴑 𜴒 𜴓 𜴔 𜴕 𜴖 𜴗 𜴘 𜴙 𜴚 119 | 𜴛 𜴜 𜴝 𜴞 𜴟 𜴠 𜴡 𜴢 𜴣 𜴤 𜴥 𜴦 𜴧 𜴨 𜴩 𜴪 𜴫 𜴬 𜴭 𜴮 𜴯 𜴰 𜴱 𜴲 𜴳 𜴴 𜴵 𜴶 𜴷 𜴸 𜴹 𜴺 𜴻 𜴼 𜴽 𜴾 𜴿 𜵀 𜵁 𜵂 𜵃 𜵄 𜵅 𜵆 𜵇 𜵈 𜵉 𜵊 120 | 𜵋 𜵌 𜵍 𜵎 𜵏 𜵐 𜵑 𜵒 𜵓 𜵔 𜵕 𜵖 𜵗 𜵘 𜵙 𜵚 𜵛 𜵜 𜵝 𜵞 𜵟 𜵠 𜵡 𜵢 𜵣 𜵤 𜵥 𜵦 𜵧 𜵨 𜵩 𜵪 𜵫 𜵬 𜵭 𜵮 𜵯 𜵰 𜵱 𜵲 𜵳 𜵴 𜵵 𜵶 𜵷 𜵸 𜵹 𜵺 121 | 𜵻 𜵼 𜵽 𜵾 𜵿 𜶀 𜶁 𜶂 𜶃 𜶄 𜶅 𜶆 𜶇 𜶈 𜶉 𜶊 𜶋 𜶌 𜶍 𜶎 𜶏 𜶐 𜶑 𜶒 𜶓 𜶔 𜶕 𜶖 𜶗 𜶘 𜶙 𜶚 𜶛 𜶜 𜶝 𜶞 𜶟 𜶠 𜶡 𜶢 𜶣 𜶤 𜶥 𜶦 𜶧 𜶨 𜶩 𜶪 122 | 𜶫 𜶬 𜶭 𜶮 𜶯 𜶰 𜶱 𜶲 𜶳 𜶴 𜶵 𜶶 𜶷 𜶸 𜶹 𜶺 𜶻 𜶼 𜶽 𜶾 𜶿 𜷀 𜷁 𜷂 𜷃 𜷄 𜷅 𜷆 𜷇 𜷈 𜷉 𜷊 𜷋 𜷌 𜷍 𜷎 𜷏 𜷐 𜷑 𜷒 𜷓 𜷔 𜷕 𜷖 𜷗 𜷘 𜷙 𜷚 123 | 𜷛 𜷜 𜷝 𜷞 𜷟 𜷠 𜷡 𜷢 𜷣 𜷤 𜷥 𜹑 𜹒 𜹓 𜹔 𜹕 𜹖 𜹗 𜹘 𜹙 𜹚 𜹛 𜹜 𜹝 𜹞 𜹟 𜹠 𜹡 𜹢 𜹣 𜹤 𜹥 𜹦 𜹧 𜹨 𜹩 𜹪 𜹫 𜹬 𜹭 𜹮 𜹯 𜹰 𜹱 𜹲 𜹳 𜹴 𜹵 124 | 𜹶 𜹷 𜹸 𜹹 𜹺 𜹻 𜹼 𜹽 𜹾 𜹿 𜺀 𜺁 𜺂 𜺃 𜺄 𜺅 𜺆 𜺇 𜺈 𜺉 𜺊 𜺋 𜺌 𜺍 𜺎 𜺏 𜺠 𜺣 𜺨 𜺫 𝐀 𝐁 𝐂 𝐃 𝐄 𝐅 𝐆 𝐇 𝐈 𝐉 𝐊 𝐋 𝐌 𝐍 𝐎 𝐏 𝐐 𝐑 125 | 𝐒 𝐓 𝐔 𝐕 𝐖 𝐗 𝐘 𝐙 𝐚 𝐛 𝐜 𝐝 𝐞 𝐟 𝐠 𝐡 𝐢 𝐣 𝐤 𝐥 𝐦 𝐧 𝐨 𝐩 𝐪 𝐫 𝐬 𝐭 𝐮 𝐯 𝐰 𝐱 𝐲 𝐳 𝐴 𝐵 𝐶 𝐷 𝐸 𝐹 𝐺 𝐻 𝐼 𝐽 𝐾 𝐿 𝑀 𝑁 126 | 𝑂 𝑃 𝑄 𝑅 𝑆 𝑇 𝑈 𝑉 𝑊 𝑋 𝑌 𝑍 𝑎 𝑏 𝑐 𝑑 𝑒 𝑓 𝑔 𝑖 𝑗 𝑘 𝑙 𝑚 𝑛 𝑜 𝑝 𝑞 𝑟 𝑠 𝑡 𝑢 𝑣 𝑤 𝑥 𝑦 𝑧 𝑨 𝑩 𝑪 𝑫 𝑬 𝑭 𝑮 𝑯 𝑰 𝑱 𝑲 127 | 𝑳 𝑴 𝑵 𝑶 𝑷 𝑸 𝑹 𝑺 𝑻 𝑼 𝑽 𝑾 𝑿 𝒀 𝒁 𝒂 𝒃 𝒄 𝒅 𝒆 𝒇 𝒈 𝒉 𝒊 𝒋 𝒌 𝒍 𝒎 𝒏 𝒐 𝒑 𝒒 𝒓 𝒔 𝒕 𝒖 𝒗 𝒘 𝒙 𝒚 𝒛 𝔄 𝔅 𝔇 𝔈 𝔉 𝔊 𝔍 128 | 𝔎 𝔏 𝔐 𝔑 𝔒 𝔓 𝔔 𝔖 𝔗 𝔘 𝔙 𝔚 𝔛 𝔜 𝔞 𝔟 𝔠 𝔡 𝔢 𝔣 𝔤 𝔥 𝔦 𝔧 𝔨 𝔩 𝔪 𝔫 𝔬 𝔭 𝔮 𝔯 𝔰 𝔱 𝔲 𝔳 𝔴 𝔵 𝔶 𝔷 𝔸 𝔹 𝔻 𝔼 𝔽 𝔾 𝕀 𝕁 129 | 𝕂 𝕃 𝕄 𝕆 𝕊 𝕋 𝕌 𝕍 𝕎 𝕏 𝕐 𝕒 𝕓 𝕔 𝕕 𝕖 𝕗 𝕘 𝕙 𝕚 𝕛 𝕜 𝕝 𝕞 𝕟 𝕠 𝕡 𝕢 𝕣 𝕤 𝕥 𝕦 𝕧 𝕨 𝕩 𝕪 𝕫 𝖠 𝖡 𝖢 𝖣 𝖤 𝖥 𝖦 𝖧 𝖨 𝖩 𝖪 130 | 𝖫 𝖬 𝖭 𝖮 𝖯 𝖰 𝖱 𝖲 𝖳 𝖴 𝖵 𝖶 𝖷 𝖸 𝖹 𝖺 𝖻 𝖼 𝖽 𝖾 𝖿 𝗀 𝗁 𝗂 𝗃 𝗄 𝗅 𝗆 𝗇 𝗈 𝗉 𝗊 𝗋 𝗌 𝗍 𝗎 𝗏 𝗐 𝗑 𝗒 𝗓 𝗔 𝗕 𝗖 𝗗 𝗘 𝗙 𝗚 131 | 𝗛 𝗜 𝗝 𝗞 𝗟 𝗠 𝗡 𝗢 𝗣 𝗤 𝗥 𝗦 𝗧 𝗨 𝗩 𝗪 𝗫 𝗬 𝗭 𝗮 𝗯 𝗰 𝗱 𝗲 𝗳 𝗴 𝗵 𝗶 𝗷 𝗸 𝗹 𝗺 𝗻 𝗼 𝗽 𝗾 𝗿 𝘀 𝘁 𝘂 𝘃 𝘄 𝘅 𝘆 𝘇 𝘈 𝘉 𝘊 132 | 𝘋 𝘌 𝘍 𝘎 𝘏 𝘐 𝘑 𝘒 𝘓 𝘔 𝘕 𝘖 𝘗 𝘘 𝘙 𝘚 𝘛 𝘜 𝘝 𝘞 𝘟 𝘠 𝘡 𝘢 𝘣 𝘤 𝘥 𝘦 𝘧 𝘨 𝘩 𝘪 𝘫 𝘬 𝘭 𝘮 𝘯 𝘰 𝘱 𝘲 𝘳 𝘴 𝘵 𝘶 𝘷 𝘸 𝘹 𝘺 133 | 𝘻 𝘼 𝘽 𝘾 𝘿 𝙀 𝙁 𝙂 𝙃 𝙄 𝙅 𝙆 𝙇 𝙈 𝙉 𝙊 𝙋 𝙌 𝙍 𝙎 𝙏 𝙐 𝙑 𝙒 𝙓 𝙔 𝙕 𝙖 𝙗 𝙘 𝙙 𝙚 𝙛 𝙜 𝙝 𝙞 𝙟 𝙠 𝙡 𝙢 𝙣 𝙤 𝙥 𝙦 𝙧 𝙨 𝙩 𝙪 134 | 𝙫 𝙬 𝙭 𝙮 𝙯 𝙰 𝙱 𝙲 𝙳 𝙴 𝙵 𝙶 𝙷 𝙸 𝙹 𝙺 𝙻 𝙼 𝙽 𝙾 𝙿 𝚀 𝚁 𝚂 𝚃 𝚄 𝚅 𝚆 𝚇 𝚈 𝚉 𝚊 𝚋 𝚌 𝚍 𝚎 𝚏 𝚐 𝚑 𝚒 𝚓 𝚔 𝚕 𝚖 𝚗 𝚘 𝚙 𝚚 135 | 𝚛 𝚜 𝚝 𝚞 𝚟 𝚠 𝚡 𝚢 𝚣 𝚤 𝚥 𝟎 𝟏 𝟐 𝟑 𝟒 𝟓 𝟔 𝟕 𝟖 𝟗 𝟘 𝟙 𝟚 𝟛 𝟜 𝟝 𝟞 𝟟 𝟠 𝟡 𝟢 𝟣 𝟤 𝟥 𝟦 𝟧 𝟨 𝟩 𝟪 𝟫 𝟬 𝟭 𝟮 𝟯 𝟰 𝟱 𝟲 136 | 𝟳 𝟴 𝟵 𝟶 𝟷 𝟸 𝟹 𝟺 𝟻 𝟼 𝟽 𝟾 𝟿 🢳 🢴 🢵 🢶 🢷 🢸 🢹 🢺 🢻 🬀 🬁 🬂 🬃 🬄 🬅 🬆 🬇 🬈 🬉 🬊 🬋 🬌 🬍 🬎 🬏 🬐 🬑 🬒 🬓 🬔 🬕 🬖 🬗 🬘 🬙 137 | 🬚 🬛 🬜 🬝 🬞 🬟 🬠 🬡 🬢 🬣 🬤 🬥 🬦 🬧 🬨 🬩 🬪 🬫 🬬 🬭 🬮 🬯 🬰 🬱 🬲 🬳 🬴 🬵 🬶 🬷 🬸 🬹 🬺 🬻 🬼 🬽 🬾 🬿 🭀 🭁 🭂 🭃 🭄 🭅 🭆 🭇 🭈 🭉 138 | 🭊 🭋 🭌 🭍 🭎 🭏 🭐 🭑 🭒 🭓 🭔 🭕 🭖 🭗 🭘 🭙 🭚 🭛 🭜 🭝 🭞 🭟 🭠 🭡 🭢 🭣 🭤 🭥 🭦 🭧 🭨 🭩 🭪 🭫 🭬 🭭 🭮 🭯 🭰 🭱 🭲 🭳 🭴 🭵 🭶 🭷 🭸 🭹 139 | 🭺 🭻 🭼 🭽 🭾 🭿 🮀 🮁 🮂 🮃 🮄 🮅 🮆 🮇 🮈 🮉 🮊 🮋 🮌 🮍 🮎 🮏 🮐 🮑 🮒 🮓 🮔 🮕 🮖 🮗 🮘 🮙 🮚 🮛 🮜 🮝 🮞 🮟 🮠 🮡 🮢 🮣 🮤 🮥 🮦 🮧 🮨 🮩 140 | 🮪 🮫 🮬 🮭 🮮 🮯 🮰 🮱 🮲 🮳 🮴 🮵 🮶 🮷 🮸 🮹 🮺 🮻 🮼 🮽 🮾 🮿 🯀 🯁 🯂 🯃 🯄 🯅 🯆 🯇 🯈 🯉 🯊 🯋 🯌 🯍 🯎 🯏 🯐 🯑 🯒 🯓 🯔 🯕 🯖 🯗 🯘 🯙 141 | 🯚 🯛 🯜 🯝 🯞 🯟 🯠 🯡 🯢 🯣 🯤 🯥 🯦 🯧 🯨 🯩 🯪 🯫 🯬 🯭 🯮 🯯 🯰 🯱 🯲 🯳 🯴 🯵 🯶 🯷 🯸 🯹 󰀂 󰀃 󰀆 󰀇 󰀉 󰀑 󰀘 󰀚 󰀠 󰀡 󰀢 󰀣 󰀤 󰀥 󰀦 󰀧 142 | 󰀨 󰀩 󰀪 󰀫 󰀬 󰀳 󰀵 󰀶 󰀷 󰀻 󰀽 󰀾 󰀿 󰁀 󰁁 󰁂 󰁃 󰁄 󰁅 󰁆 󰁇 󰁈 󰁊 󰁋 󰁌 󰁍 󰁎 󰁏 󰁐 󰁒 󰁓 󰁔 󰁕 󰁖 󰁗 󰁙 󰁚 󰁛 󰁜 󰁝 󰁞 󰁟 󰁠 󰁢 󰁣 󰁥 󰁹 󰁺 143 | 󰁻 󰁼 󰁽 󰁾 󰁿 󰂀 󰂁 󰂂 󰂃 󰂄 󰂅 󰂆 󰂇 󰂈 󰂉 󰂊 󰂋 󰂌 󰂍 󰂎 󰂏 󰂐 󰂑 󰂡 󰂭 󰂯 󰂰 󰂱 󰂲 󰂳 󰂴 󰂺 󰂻 󰂼 󰂿 󰃇 󰃈 󰃊 󰃋 󰃌 󰃍 󰃎 󰃏 󰃐 󰃑 󰃒 󰃚 󰃛 144 | 󰃜 󰃝 󰃞 󰃟 󰃠 󰃡 󰃽 󰃾 󰄗 󰄫 󰄬 󰄭 󰄮 󰄯 󰄰 󰄱 󰄲 󰄳 󰄴 󰄵 󰄶 󰄷 󰄸 󰄹 󰄺 󰅖 󰅗 󰅘 󰅙 󰅚 󰅛 󰅜 󰅝 󰅨 󰅩 󰅪 󰅫 󰅬 󰅭 󰅮 󰅯 󰅰 󰅱 󰅲 󰅳 󰅴 󰆏 󰆑 145 | 󰆖 󰆗 󰆞 󰆟 󰆦 󰆧 󰆩 󰇊 󰇋 󰇌 󰇍 󰇎 󰇏 󰇕 󰇞 󰇟 󰇽 󰈔 󰈕 󰈖 󰈗 󰈘 󰈙 󰈚 󰈛 󰈜 󰈝 󰈞 󰈟 󰈠 󰈡 󰈢 󰈣 󰈤 󰈧 󰈨 󰈩 󰈪 󰈫 󰈬 󰈭 󰈮 󰈶 󰈹 󰉇 󰉈 󰉋 󰉌 146 | 󰉍 󰉏 󰉐 󰉑 󰉒 󰉓 󰉔 󰉕 󰉖 󰉗 󰉘 󰉙 󰊖 󰊢 󰊤 󰊱 󰊲 󰋁 󰋂 󰋌 󰋑 󰋒 󰋓 󰋔 󰋕 󰋗 󰋠 󰋯 󰋶 󰋹 󰋻 󰌀 󰌛 󰌜 󰌝 󰌞 󰌟 󰌠 󰌡 󰌲 󰌳 󰌴 󰌷 󰌸 󰌹 󰌺 󰌻 󰌾 147 | 󰌿 󰍀 󰍁 󰍅 󰍌 󰍏 󰍔 󰍚 󰍛 󰍲 󰍳 󰍵 󰍶 󰍷 󰍸 󰎃 󰎄 󰎅 󰎆 󰎓 󰎙 󰎚 󰎛 󰎜 󰎝 󰎞 󰎠 󰎡 󰎢 󰎣 󰎤 󰎥 󰎦 󰎧 󰎨 󰎩 󰎪 󰎫 󰎬 󰎭 󰎮 󰎯 󰎰 󰎱 󰎲 󰎳 󰎴 󰎵 148 | 󰎶 󰎷 󰎸 󰎹 󰎺 󰎻 󰎼 󰎽 󰎾 󰎿 󰏀 󰏁 󰏃 󰏄 󰏑 󰏝 󰏥 󰏦 󰏧 󰏨 󰏬 󰏭 󰐀 󰐆 󰐈 󰐊 󰐋 󰐌 󰐍 󰐖 󰐗 󰐘 󰐙 󰐚 󰐝 󰐣 󰐤 󰐥 󰐦 󰐾 󰑊 󰑕 󰑬 󰒄 󰒍 󰒎 󰒔 󰒢 149 | 󰒻 󰓁 󰓂 󰔏 󰔐 󰔡 󰔢 󰕁 󰕂 󰕈 󰕑 󰕥 󰕾 󰕿 󰖀 󰖁 󰖟 󰖩 󰖪 󰖭 󰖳 󰖷 󰗄 󰗐 󰗖 󰗘 󰗝 󰗠 󰗡 󰘊 󰘐 󰘓 󰘕 󰘖 󰘥 󰘦 󰘪 󰘬 󰘯 󰘷 󰘻 󰘼 󰘽 󰘾 󰙅 󰙝 󰙡 󰙢 150 | 󰙣 󰙤 󰙦 󰙧 󰙰 󰙱 󰙲 󰚇 󰚎 󰚕 󰚝 󰚩 󰚸 󰚹 󰛀 󰛁 󰛂 󰛃 󰛞 󰛟 󰛠 󰛢 󰛣 󰛤 󰛥 󰛦 󰛫 󰛲 󰛳 󰛴 󰛵 󰛶 󰛷 󰛿 󰜄 󰜈 󰜏 󰜒 󰜓 󰜔 󰜕 󰜖 󰜘 󰜙 󰜚 󰜛 󰜜 󰜝 151 | 󰜞 󰜫 󰜯 󰜰 󰜲 󰜳 󰜵 󰜶 󰜸 󰜹 󰜻 󰝉 󰝒 󰝝 󰝞 󰝟 󰝣 󰝤 󰝮 󰝰 󰝶 󰞃 󰞉 󰞋 󰞹 󰟃 󰟄 󰟒 󰟓 󰠇 󰠈 󰠉 󰠊 󰠋 󰠌 󰠍 󰠎 󰠏 󰠐 󰠑 󰠒 󰠞 󰠠 󰠹 󰠾 󰡄 󰡕 󰡖 152 | 󰡨 󰡯 󰡰 󰡸 󰡽 󰢃 󰢋 󰢑 󰢜 󰢝 󰢞 󰢟 󰢡 󰢢 󰢣 󰢤 󰢥 󰢦 󰢩 󰢪 󰢬 󰢭 󰢰 󰢱 󰢼 󰢽 󰢾 󰢿 󰣇 󰣉 󰣕 󰣘 󰣙 󰣚 󰣛 󰣜 󰣞 󰣠 󰣨 󰣴 󰣵 󰣶 󰣷 󰣸 󰣹 󰣺 󰣻 󰣼 153 | 󰣽 󰣾 󰣿 󰤁 󰤂 󰤃 󰤆 󰤘 󰤟 󰤠 󰤡 󰤢 󰤣 󰤤 󰤥 󰤦 󰤧 󰤨 󰤩 󰤪 󰤫 󰤬 󰤭 󰤮 󰤯 󰤴 󰤺 󰤾 󰤿 󰥀 󰥁 󰥂 󰥃 󰥄 󰥅 󰥆 󰥇 󰥈 󰥉 󰥊 󰥤 󰥥 󰥦 󰥨 󰥩 󰥱 󰥲 󰦓 154 | 󰦕 󰦖 󰦗 󰦘 󰦸 󰦺 󰧄 󰧆 󰧖 󰧗 󰧘 󰧙 󰧚 󰧛 󰧜 󰧝 󰧞 󰧟 󰧭 󰧮 󰨘 󰨙 󰨚 󰨞 󰨥 󰩋 󰩌 󰩍 󰩎 󰩖 󰩗 󰩠 󰩯 󰩳 󰩴 󰪊 󰪌 󰪎 󰪏 󰪐 󰪞 󰪟 󰪠 󰪡 󰪢 󰪣 󰪤 󰪥 155 | 󰪶 󰪷 󰪸 󰪹 󰪺 󰪻 󰫏 󰫐 󰫓 󰫔 󰫮 󰫯 󰫰 󰫱 󰫲 󰫳 󰫴 󰫵 󰫶 󰫷 󰫸 󰫹 󰫺 󰫻 󰫼 󰫽 󰫾 󰫿 󰬀 󰬁 󰬂 󰬃 󰬄 󰬅 󰬆 󰬇 󰬈 󰬉 󰬊 󰬋 󰬌 󰬍 󰬎 󰬏 󰬐 󰬑 󰬒 󰬓 156 | 󰬔 󰬕 󰬖 󰬗 󰬘 󰬙 󰬚 󰬛 󰬜 󰬝 󰬞 󰬟 󰬠 󰬡 󰬦 󰬧 󰬨 󰬩 󰬪 󰬫 󰬬 󰬭 󰬲 󰬳 󰬷 󰬸 󰬺 󰬻 󰬼 󰬽 󰬾 󰬿 󰭀 󰭁 󰭂 󰭕 󰭤 󰮍 󰮎 󰮔 󰮕 󰮗 󰮘 󰮜 󰮝 󰮞 󰮟 󰮠 157 | 󰮨 󰯠 󰯡 󰯦 󰯫 󰯬 󰯭 󰯮 󰯯 󰯰 󰯱 󰯲 󰯳 󰯴 󰯵 󰯶 󰯷 󰯸 󰯹 󰯺 󰯻 󰯼 󰯽 󰯾 󰯿 󰰀 󰰁 󰰂 󰰃 󰰄 󰰅 󰰆 󰰇 󰰈 󰰉 󰰊 󰰋 󰰌 󰰍 󰰎 󰰏 󰰐 󰰑 󰰒 󰰓 󰰔 󰰕 󰰖 158 | 󰰗 󰰘 󰰙 󰰚 󰰛 󰰜 󰰝 󰰞 󰰟 󰰠 󰰡 󰰢 󰰣 󰰤 󰰥 󰰦 󰰧 󰰨 󰰩 󰰪 󰰫 󰰬 󰰭 󰰮 󰰯 󰰰 󰰱 󰰲 󰰳 󰰴 󰰵 󰰶 󰰷 󰰸 󰱑 󰱒 󰱓 󰱔 󰱝 󰱞 󰱟 󰱠 󰱦 󰱼 󰱽 󰱾 󰱿 󰲀 159 | 󰲁 󰲂 󰲃 󰲊 󰲐 󰲒 󰲔 󰲚 󰲛 󰲜 󰲝 󰲠 󰲡 󰲢 󰲣 󰲤 󰲥 󰲦 󰲧 󰲨 󰲩 󰲪 󰲫 󰲬 󰲭 󰲮 󰲯 󰲰 󰲱 󰲲 󰲳 󰲷 󰲺 󰲼 󰲽 󰳈 󰳘 󰳛 󰳜 󰳝 󰳞 󰳟 󰳠 󰳡 󰳢 󰳤 󰳦 󰳲 160 | 󰴃 󰴉 󰴊 󰴋 󰴌 󰴑 󰴔 󰴘 󰴙 󰴚 󰴛 󰴜 󰴝 󰴭 󰵆 󰵚 󰵛 󰷆 󰷇 󰷈 󰷉 󰷊 󰷋 󰷌 󰷍 󰷎 󰷏 󰷸 󰷹 󰸁 󰸂 󰸃 󰸄 󰸅 󰸈 󰸋 󰸞 󰸟 󰸠 󰸡 󰸤 󰸥 󰸦 󰸩 󰸪 󰸫 󰸬 󰸳 161 | 󰸴 󰸵 󰸶 󰸷 󰸸 󰸹 󰸺 󰸻 󰸼 󰸽 󰸾 󰸿 󰹀 󰹁 󰹂 󰹯 󰹰 󰹱 󰹲 󰺕 󰺖 󰺥 󰺦 󰺧 󰺨 󰺩 󰺪 󰺫 󰺬 󰺭 󰺮 󰺯 󰺰 󰻂 󰻃 󰻐 󰻫 󰻬 󰻭 󰼄 󰼎 󰼏 󰼐 󰼑 󰼒 󰼓 󰼔 󰼕 162 | 󰼖 󰼗 󰼘 󰼛 󰽛 󰽡 󰽢 󰽣 󰽤 󰽥 󰽦 󰽧 󰽨 󰽽 󰽾 󰾔 󰾟 󰾴 󰾵 󰾶 󰾷 󰿉 󰿋 󰿠 󰿡 󰿢 󰿣 󰿤 󰿦 󰿩 󰿪 󰿫 󰿬 󰿭 󰿮 󰿷 󰿺 󱀊 󱀌 󱀍 󱀎 󱀨 󱀩 󱀪 󱀫 󱀬 󱀭 󱀮 163 | 󱀯 󱀰 󱀱 󱀲 󱀳 󱀴 󱀵 󱀶 󱀷 󱀸 󱀹 󱀺 󱀻 󱀼 󱀽 󱀾 󱁍 󱁒 󱁹 󱁺 󱁻 󱁼 󱁽 󱁾 󱁿 󱂀 󱂇 󱂠 󱂵 󱂶 󱂷 󱂸 󱂺 󱃂 󱃃 󱃌 󱃍 󱃓 󱃖 󱃗 󱃡 󱃢 󱃣 󱃤 󱃩 󱃪 󱃫 󱃬 164 | 󱃭 󱃿 󱄀 󱄁 󱄅 󱄆 󱄊 󱄑 󱄠 󱄡 󱅁 󱅂 󱅃 󱅄 󱅅 󱅈 󱅉 󱅖 󱅶 󱅷 󱅸 󱅹 󱅺 󱅿 󱆃 󱆄 󱆅 󱆆 󱆇 󱆭 󱆮 󱇗 󱇧 󱇨 󱇬 󱈏 󱈐 󱈑 󱈖 󱈗 󱈙 󱈚 󱈸 󱉆 󱉊 󱉝 󱉞 󱉭 165 | 󱉮 󱉰 󱉱 󱉲 󱉳 󱉴 󱉺 󱊆 󱊇 󱊡 󱊢 󱊣 󱊤 󱊥 󱊦 󱊩 󱋡 󱋢 󱋣 󱋤 󱋬 󱋭 󱌬 󱌭 󱌮 󱌯 󱌰 󱌷 󱍙 󱍚 󱍷 󱍸 󱎕 󱎖 󱎘 󱎙 󱎞 󱏉 󱏒 󱏓 󱏔 󱏦 󱏿 󱐋 󱐌 󱑙 󱑚 󱑤 166 | 󱑥 󱑾 󱑿 󱓬 󱓻 󱓼 󱔀 󱔑 󱔗 󱔘 󱔢 󱔱 󱕍 󱕎 󱕏 󱖏 󱖐 󱖑 󱖒 󱖓 󱖔 󱖕 󱖖 󱖗 󱖘 󱖙 󱖚 󱖟 󱖠 󱖲 󱖳 󱗋 󱗜 󱗝 󱘗 󱘹 󱙏 󱙐 󱙑 󱙒 󱙓 󱙔 󱚵 󱚶 󱚷 󱚸 󱚹 󱚺 167 | 󱚻 󱚼 󱚽 󱚾 󱚿 󱛀 󱛁 󱛂 󱛃 󱛄 󱛅 󱛆 󱛇 󱛋 󱛌 󱛍 󱛎 󱛏 󱝲 󱝳 󱝴 󱝵 󱝽 󱝾 󱝿 󱞀 󱞁 󱞂 󱞃 󱞄 󱞇 󱞈 󱞊 󱞋 󱞐 󱞑 󱞒 󱞜 󱞝 󱞞 󱟜 󱟝 󱟞 󱟟 󱟠 󱟡 󱟢 󱟣 168 | 󱟤 󱟥 󱟦 󱟧 󱟨 󱟩 󱠆 󱠴 󱠵 󱢍 󱢎 󱢕 󱤙 󱤚 󱤧 󱤻 󱤼 󱤽 󱤾 󱤿 󱥀 󱥤 󱥥 󱥦 󱥧 󱥨 󱥩 󱥪 󱥫 󱥬 󱥭 󱥸 󱥾 󱥿 󱧃 󱧆 󱧇 󱧈 󱧉 󱧊 󱧋 󱧓 󱧥 󱧦 󱧨 󱧩 󱧪 󱧫 169 | 󱧬 󱧭 󱧮 󱧯 󱧰 󱧱 󱧲 󱧳 󱧴 󱧵 󱧶 󱧷 󱧸 󱧹 󱧺 󱧻 󱧼 󱧽 󱨂 󱨃 󱨄 󱨅 󱨧 󱩼 󱩽 󱩿 󱪓 󱪔 󱪕 󱪖 󱪗 󱪘 󱪙 󱪚 󱪛 󱪜 󱪝 󱪞 󱪟 󱪠 󱪡 󱪢 󱪧 󱪨 󱪴 󱪵 󱫋 -------------------------------------------------------------------------------- /txt/clojure.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 C2 8 3 | 4 | 5 | 7 8. 5 4 8 6 | 7 8. 8 7 | 7 8. 1 .4 . 8 8 | 7 8. 4 . 1 . 8 9 | 7 8. 8 10 | 7 8. 5 .4 6.4 2 .4 3. 8 11 | 7 8. 4 .4 6 4 . 8 12 | 7 8. 6 . 8 13 | 7 8. 4 . 8 14 | 7 8. 2 . 6 2 . 8 15 | 7 8. 1 . 4 . 6 .4 . 8 16 | 7 8. 4 . 8 17 | 7 8. 4 . 8 18 | 7 8. 8 19 | 7 8. 1 . 8 20 | 7 8. 4 . 8 21 | -------------------------------------------------------------------------------- /txt/clojure.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║  CLOJURE ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ 1 │ (defn clean ║ 6 | ║ 2 │ [{:keys [xs x t]}] ║ 7 | ║ 3 │ (->> (match t ║ 8 | ║ 4 │ ::ESC [(str x \\)] ║ 9 | ║ 5 │ ::STR [x] ║ 10 | ║ 6 │ ::CMD (if (every? #(str/includes? "([{}])" (str %)) x) ║ 11 | ║ 7 │ (map (comp ->CMD str) x) ║ 12 | ║ 8 │ [(->CMD x)]) ║ 13 | ║ 9 │ ::DEC (match x ║ 14 | ║ 10 │ "." [(->CMD ".")] ║ 15 | ║ 11 │ (\. :<< last) [(->CMD (butlast x))] ║ 16 | ║ 12 │ :else [(bigdec x)]) ║ 17 | ║ 13 │ ::NUM [(bigdec x)] ║ 18 | ║ 14 │ :else []) ║ 19 | ║ 15 │ (lazy-cat xs) ║ 20 | ║ 16 │ (assoc dParser :xs))) ║ 21 | ║ ║ 22 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 23 | -------------------------------------------------------------------------------- /txt/eng.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | . 8 6 | . 8 7 | . 8 8 | . 8 9 | . 8 10 | . 8 11 | . 8 12 | 13 | . 8 14 | . 8 15 | . 8 16 | . 8 17 | . 8 18 | . 8 19 | . 8 20 | -------------------------------------------------------------------------------- /txt/eng.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ ENGLISH ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ Grumpy wizards make toxic brew for the evil Queen and Jack. One morning, when ║ 6 | ║ Gregor Samsa woke from troubled dreams, he found himself transformed in his bed ║ 7 | ║ into a horrible vermin. He lay on his armour-like back, and if he lifted his ║ 8 | ║ head a little he could see his brown belly, slightly domed and divided by ║ 9 | ║ arches into stiff sections. The bedding was hardly able to cover it and seemed ║ 10 | ║ ready to slide off any moment. His many legs, pitifully thin compared with the ║ 11 | ║ size of the rest of him, waved about helplessly as he looked. ║ 12 | ║ ║ 13 | ║ GRUMPY WIZARDS MAKE TOXIC BREW FOR THE EVIL QUEEN AND JACK. ONE MORNING, WHEN ║ 14 | ║ GREGOR SAMSA WOKE FROM TROUBLED DREAMS, HE FOUND HIMSELF TRANSFORMED IN HIS BED ║ 15 | ║ INTO A HORRIBLE VERMIN. HE LAY ON HIS ARMOUR-LIKE BACK, AND IF HE LIFTED HIS ║ 16 | ║ HEAD A LITTLE HE COULD SEE HIS BROWN BELLY, SLIGHTLY DOMED AND DIVIDED BY ║ 17 | ║ ARCHES INTO STIFF SECTIONS. THE BEDDING WAS HARDLY ABLE TO COVER IT AND SEEMED ║ 18 | ║ READY TO SLIDE OFF ANY MOMENT. HIS MANY LEGS, PITIFULLY THIN COMPARED WITH THE ║ 19 | ║ SIZE OF THE REST OF HIM, WAVED ABOUT HELPLESSLY AS HE LOOKED. ║ 20 | ║ ║ 21 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 22 | -------------------------------------------------------------------------------- /txt/engalt.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | 8 6 | 3 8 7 | 8 8 | . 8 9 | 8 10 | 8 11 | 3 8 12 | 8 13 | . 8 14 | . 8 15 | 8 16 | 8 17 | 3 8 18 | 8 19 | . 8 20 | . 8 21 | . 8 22 | 8 23 | 8 24 | 3 8 25 | 8 26 | . 8 27 | . 8 28 | 8 29 | 8 30 | 3 8 31 | 8 32 | . 8 33 | . 8 34 | 8 35 | 8 36 | 3 8 37 | 8 38 | . 8 39 | . 8 40 | . 8 41 | 8 42 | 8 43 | 3 8 44 | 8 45 | . 8 46 | . 8 47 | . 8 48 | 8 49 | 8 50 | 3 8 51 | 8 52 | . 8 53 | . 8 54 | 8 55 | 8 56 | 3 8 57 | 8 58 | . 8 59 | . 8 60 | 8 61 | 8 62 | 3 8 63 | 8 64 | . 8 65 | . 8 66 | . 8 67 | 8 68 | 8 69 | 3 8 70 | 8 71 | . 8 72 | . 8 73 | . 8 74 | 8 75 | 8 76 | 3 8 77 | 8 78 | . 8 79 | . 8 80 | -------------------------------------------------------------------------------- /txt/engalt.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ ALT. STYLES ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 6 | ║ SMALL CAPS ║ 7 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 8 | ║ ɢʀᴜᴍᴩʏ ᴡɪᴢᴀʀᴅꜱ ᴍᴀᴋᴇ ᴛᴏxɪᴄ ʙʀᴇᴡ ꜰᴏʀ ᴛʜᴇ ᴇᴠɪʟ ꞯᴜᴇᴇɴ ᴀɴᴅ ᴊᴀᴄᴋ. ║ 9 | ║ ║ 10 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 11 | ║ UNDERLINED (instead of circled) ║ 12 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 13 | ║ Ⓖⓡⓤⓜⓟⓨ ⓦⓘⓩⓐⓡⓓⓢ ⓜⓐⓚⓔ ⓣⓞⓧⓘⓒ ⓑⓡⓔⓦ ⓕⓞⓡ ⓣⓗⓔ ⓔⓥⓘⓛ Ⓠⓤⓔⓔⓝ ⓐⓝⓓ Ⓙⓐⓒⓚ. ║ 14 | ║ ⒼⓇⓊⓂⓅⓎ ⓌⒾⓏⒶⓇⒹⓈ ⓂⒶⓀⒺ ⓉⓄⓍⒾⒸ ⒷⓇⒺⓌ ⒻⓄⓇ ⓉⒽⒺ ⒺⓋⒾⓁ ⓆⓊⒺⒺⓃ ⒶⓃⒹ ⒿⒶⒸⓀ. ║ 15 | ║ ║ 16 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 17 | ║ MATH BOLD ║ 18 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 19 | ║ 𝐆𝐫𝐮𝐦𝐩𝐲 𝐰𝐢𝐳𝐚𝐫𝐝𝐬 𝐦𝐚𝐤𝐞 𝐭𝐨𝐱𝐢𝐜 𝐛𝐫𝐞𝐰 𝐟𝐨𝐫 𝐭𝐡𝐞 𝐞𝐯𝐢𝐥 𝐐𝐮𝐞𝐞𝐧 𝐚𝐧𝐝 𝐉𝐚𝐜𝐤. ║ 20 | ║ 𝐆𝐑𝐔𝐌𝐏𝐘 𝐖𝐈𝐙𝐀𝐑𝐃𝐒 𝐌𝐀𝐊𝐄 𝐓𝐎𝐗𝐈𝐂 𝐁𝐑𝐄𝐖 𝐅𝐎𝐑 𝐓𝐇𝐄 𝐄𝐕𝐈𝐋 𝐐𝐔𝐄𝐄𝐍 𝐀𝐍𝐃 𝐉𝐀𝐂𝐊. ║ 21 | ║ 𝟎 𝟏 𝟐 𝟑 𝟒 𝟓 𝟔 𝟕 𝟖 𝟗 ║ 22 | ║ ║ 23 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 24 | ║ MATH ITALIC ║ 25 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 26 | ║ 𝐺𝑟𝑢𝑚𝑝𝑦 𝑤𝑖𝑧𝑎𝑟𝑑𝑠 𝑚𝑎𝑘𝑒 𝑡𝑜𝑥𝑖𝑐 𝑏𝑟𝑒𝑤 𝑓𝑜𝑟 𝑡ℎ𝑒 𝑒𝑣𝑖𝑙 𝑄𝑢𝑒𝑒𝑛 𝑎𝑛𝑑 𝐽𝑎𝑐𝑘. ║ 27 | ║ 𝐺𝑅𝑈𝑀𝑃𝑌 𝑊𝐼𝑍𝐴𝑅𝐷𝑆 𝑀𝐴𝐾𝐸 𝑇𝑂𝑋𝐼𝐶 𝐵𝑅𝐸𝑊 𝐹𝑂𝑅 𝑇𝐻𝐸 𝐸𝑉𝐼𝐿 𝑄𝑈𝐸𝐸𝑁 𝐴𝑁𝐷 𝐽𝐴𝐶𝐾. ║ 28 | ║ ║ 29 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 30 | ║ MATH BOLD ITALIC ║ 31 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 32 | ║ 𝑮𝒓𝒖𝒎𝒑𝒚 𝒘𝒊𝒛𝒂𝒓𝒅𝒔 𝒎𝒂𝒌𝒆 𝒕𝒐𝒙𝒊𝒄 𝒃𝒓𝒆𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 𝒆𝒗𝒊𝒍 𝑸𝒖𝒆𝒆𝒏 𝒂𝒏𝒅 𝑱𝒂𝒄𝒌. ║ 33 | ║ 𝑮𝑹𝑼𝑴𝑷𝒀 𝑾𝑰𝒁𝑨𝑹𝑫𝑺 𝑴𝑨𝑲𝑬 𝑻𝑶𝑿𝑰𝑪 𝑩𝑹𝑬𝑾 𝑭𝑶𝑹 𝑻𝑯𝑬 𝑬𝑽𝑰𝑳 𝑸𝑼𝑬𝑬𝑵 𝑨𝑵𝑫 𝑱𝑨𝑪𝑲. ║ 34 | ║ ║ 35 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 36 | ║ MATH SANS ║ 37 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 38 | ║ 𝖦𝗋𝗎𝗆𝗉𝗒 𝗐𝗂𝗓𝖺𝗋𝖽𝗌 𝗆𝖺𝗄𝖾 𝗍𝗈𝗑𝗂𝖼 𝖻𝗋𝖾𝗐 𝖿𝗈𝗋 𝗍𝗁𝖾 𝖾𝗏𝗂𝗅 𝖰𝗎𝖾𝖾𝗇 𝖺𝗇𝖽 𝖩𝖺𝖼𝗄. ║ 39 | ║ 𝖦𝖱𝖴𝖬𝖯𝖸 𝖶𝖨𝖹𝖠𝖱𝖣𝖲 𝖬𝖠𝖪𝖤 𝖳𝖮𝖷𝖨𝖢 𝖡𝖱𝖤𝖶 𝖥𝖮𝖱 𝖳𝖧𝖤 𝖤𝖵𝖨𝖫 𝖰𝖴𝖤𝖤𝖭 𝖠𝖭𝖣 𝖩𝖠𝖢𝖪. ║ 40 | ║ 𝟢 𝟣 𝟤 𝟥 𝟦 𝟧 𝟨 𝟩 𝟪 𝟫 ║ 41 | ║ ║ 42 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 43 | ║ MATH SANS BOLD ║ 44 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 45 | ║ 𝗚𝗿𝘂𝗺𝗽𝘆 𝘄𝗶𝘇𝗮𝗿𝗱𝘀 𝗺𝗮𝗸𝗲 𝘁𝗼𝘅𝗶𝗰 𝗯𝗿𝗲𝘄 𝗳𝗼𝗿 𝘁𝗵𝗲 𝗲𝘃𝗶𝗹 𝗤𝘂𝗲𝗲𝗻 𝗮𝗻𝗱 𝗝𝗮𝗰𝗸. ║ 46 | ║ 𝗚𝗥𝗨𝗠𝗣𝗬 𝗪𝗜𝗭𝗔𝗥𝗗𝗦 𝗠𝗔𝗞𝗘 𝗧𝗢𝗫𝗜𝗖 𝗕𝗥𝗘𝗪 𝗙𝗢𝗥 𝗧𝗛𝗘 𝗘𝗩𝗜𝗟 𝗤𝗨𝗘𝗘𝗡 𝗔𝗡𝗗 𝗝𝗔𝗖𝗞. ║ 47 | ║ 𝟬 𝟭 𝟮 𝟯 𝟰 𝟱 𝟲 𝟳 𝟴 𝟵 ║ 48 | ║ ║ 49 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 50 | ║ MATH SANS ITALIC ║ 51 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 52 | ║ 𝘎𝘳𝘶𝘮𝘱𝘺 𝘸𝘪𝘻𝘢𝘳𝘥𝘴 𝘮𝘢𝘬𝘦 𝘵𝘰𝘹𝘪𝘤 𝘣𝘳𝘦𝘸 𝘧𝘰𝘳 𝘵𝘩𝘦 𝘦𝘷𝘪𝘭 𝘘𝘶𝘦𝘦𝘯 𝘢𝘯𝘥 𝘑𝘢𝘤𝘬. ║ 53 | ║ 𝘎𝘙𝘜𝘔𝘗𝘠 𝘞𝘐𝘡𝘈𝘙𝘋𝘚 𝘔𝘈𝘒𝘌 𝘛𝘖𝘟𝘐𝘊 𝘉𝘙𝘌𝘞 𝘍𝘖𝘙 𝘛𝘏𝘌 𝘌𝘝𝘐𝘓 𝘘𝘜𝘌𝘌𝘕 𝘈𝘕𝘋 𝘑𝘈𝘊𝘒. ║ 54 | ║ ║ 55 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 56 | ║ MATH SANS BOLD ITALIC ║ 57 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 58 | ║ 𝙂𝙍𝙐𝙈𝙋𝙔 𝙒𝙄𝙕𝘼𝙍𝘿𝙎 𝙈𝘼𝙆𝙀 𝙏𝙊𝙓𝙄𝘾 𝘽𝙍𝙀𝙒 𝙁𝙊𝙍 𝙏𝙃𝙀 𝙀𝙑𝙄𝙇 𝙌𝙐𝙀𝙀𝙉 𝘼𝙉𝘿 𝙅𝘼𝘾𝙆. ║ 59 | ║ 𝙂𝙧𝙪𝙢𝙥𝙮 𝙬𝙞𝙯𝙖𝙧𝙙𝙨 𝙢𝙖𝙠𝙚 𝙩𝙤𝙭𝙞𝙘 𝙗𝙧𝙚𝙬 𝙛𝙤𝙧 𝙩𝙝𝙚 𝙚𝙫𝙞𝙡 𝙌𝙪𝙚𝙚𝙣 𝙖𝙣𝙙 𝙅𝙖𝙘𝙠. ║ 60 | ║ ║ 61 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 62 | ║ MATH MONOSPACE ║ 63 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 64 | ║ 𝙶𝚛𝚞𝚖𝚙𝚢 𝚠𝚒𝚣𝚊𝚛𝚍𝚜 𝚖𝚊𝚔𝚎 𝚝𝚘𝚡𝚒𝚌 𝚋𝚛𝚎𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 𝚎𝚟𝚒𝚕 𝚀𝚞𝚎𝚎𝚗 𝚊𝚗𝚍 𝙹𝚊𝚌𝚔. ║ 65 | ║ 𝙶𝚁𝚄𝙼𝙿𝚈 𝚆𝙸𝚉𝙰𝚁𝙳𝚂 𝙼𝙰𝙺𝙴 𝚃𝙾𝚇𝙸𝙲 𝙱𝚁𝙴𝚆 𝙵𝙾𝚁 𝚃𝙷𝙴 𝙴𝚅𝙸𝙻 𝚀𝚄𝙴𝙴𝙽 𝙰𝙽𝙳 𝙹𝙰𝙲𝙺. ║ 66 | ║ 𝟶 𝟷 𝟸 𝟹 𝟺 𝟻 𝟼 𝟽 𝟾 𝟿 ║ 67 | ║ ║ 68 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 69 | ║ MATH DOUBLE-STRUCK ║ 70 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 71 | ║ 𝔾𝕣𝕦𝕞𝕡𝕪 𝕨𝕚𝕫𝕒𝕣𝕕𝕤 𝕞𝕒𝕜𝕖 𝕥𝕠𝕩𝕚𝕔 𝕓𝕣𝕖𝕨 𝕗𝕠𝕣 𝕥𝕙𝕖 𝕖𝕧𝕚𝕝 ℚ𝕦𝕖𝕖𝕟 𝕒𝕟𝕕 𝕁𝕒𝕔𝕜. ║ 72 | ║ 𝔾ℝ𝕌𝕄ℙ𝕐 𝕎𝕀ℤ𝔸ℝ𝔻𝕊 𝕄𝔸𝕂𝔼 𝕋𝕆𝕏𝕀ℂ 𝔹ℝ𝔼𝕎 𝔽𝕆ℝ 𝕋ℍ𝔼 𝔼𝕍𝕀𝕃 ℚ𝕌𝔼𝔼ℕ 𝔸ℕ𝔻 𝕁𝔸ℂ𝕂. ║ 73 | ║ 𝟘 𝟙 𝟚 𝟛 𝟜 𝟝 𝟞 𝟟 𝟠 𝟡 ║ 74 | ║ ║ 75 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 76 | ║ MATH FRAKTUR (experimental) ║ 77 | ║ ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ║ 78 | ║ 𝔊𝔯𝔲𝔪𝔭𝔶 𝔴𝔦𝔷𝔞𝔯𝔡𝔰 𝔪𝔞𝔨𝔢 𝔱𝔬𝔵𝔦𝔠 𝔟𝔯𝔢𝔴 𝔣𝔬𝔯 𝔱𝔥𝔢 𝔢𝔳𝔦𝔩 𝔔𝔲𝔢𝔢𝔫 𝔞𝔫𝔡 𝔍𝔞𝔠𝔨. ║ 79 | ║ 𝔊ℜ𝔘𝔐𝔓𝔜 𝔚ℑℨ𝔄ℜ𝔇𝔖 𝔐𝔄𝔎𝔈 𝔗𝔒𝔛ℑℭ 𝔅ℜ𝔈𝔚 𝔉𝔒ℜ 𝔗ℌ𝔈 𝔈𝔙ℑ𝔏 𝔔𝔘𝔈𝔈𝔑 𝔄𝔑𝔇 𝔍𝔄ℭ𝔎. ║ 80 | ║ ║ 81 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 82 | -------------------------------------------------------------------------------- /txt/go.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 EA 8 3 | 4 | 5 | 7 8.7 8 6 | 7 8.5 .6 5B . 4 .6 . 5B . 5B . B . 8 7 | 7 8. 8 8 | 7 8. 7 8 9 | 7 8. 5 4 .B .B .B . 8 10 | 7 8. 5 2 8 11 | 7 8. B . 5 6 . 8 12 | 7 8. 5 . 5 . 1 . 1 .1 . 8 13 | 7 8. 5 . 8 14 | 7 8. 5 . 1 .1 8 15 | 7 8. 8 16 | 7 8. 8 17 | 7 8. 5 . 5 3 . 8 18 | 7 8. 4 . 4 .2 . 8 19 | 7 8. 5 . 1 . 8 20 | 7 8. 8 21 | 7 8. 8 22 | 7 8. B . 5 6 . 8 23 | 7 8. 7 8 24 | 7 8. 7 8 25 | 7 8. 5 . 1 .4 . 4 .4 . 1 . 3. 8 26 | 7 8. B . 5 6 . 8 27 | 7 8. 5 4 .3. 4 . 1 .5353 5.5.5.5. 8 28 | 7 8. 8 29 | 7 8. 8 30 | 7 8. 7 8 31 | 7 8. 5 . 5 . 1 .1 . 8 32 | 7 8. 5 4 . 1 . 5 3 8 33 | 7 8. 8 34 | 7 8. 8 35 | 7 8. 8 36 | 7 8. 7 8 37 | 7 8. 5 4 . 5B . 3. 4 . 1 .53. 8 38 | 7 8. B . 5 6 . 8 39 | 7 8. B 5 3. 5 . 5 . 8 40 | 7 8. 5 4 . 1 . 8 41 | 7 8. 8 42 | 7 8. 8 43 | 7 8. 8 44 | 7 8. 5 . 8 45 | 7 8. 8 46 | -------------------------------------------------------------------------------- /txt/go.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║  GOLANG ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ 1 │ // Generates bot weights based on recent msgs. ║ 6 | ║ 2 │ func (ST *State) CalcWs(lms []*Msg) ([]*Bot, string) { ║ 7 | ║ 3 │ ║ 8 | ║ 4 │ // get last user + their weights ║ 9 | ║ 5 │ ws := make(map[string]int) ║ 10 | ║ 6 │ lU := "" ║ 11 | ║ 7 │ for _, m := range lms { ║ 12 | ║ 8 │ if v, ok := ST.Wbots[m.USER.ID]; ok { ║ 13 | ║ 9 │ ws = v ║ 14 | ║ 10 │ lU = m.USER.ID ║ 15 | ║ 11 │ } ║ 16 | ║ 12 │ } ║ 17 | ║ 13 │ if ws == nil { ║ 18 | ║ 14 │ log.Warn().Msg("no usr msgs?") ║ 19 | ║ 15 │ return ST.Bots, lU ║ 20 | ║ 16 │ } ║ 21 | ║ 17 │ ║ 22 | ║ 18 │ for i, m := range lms { ║ 23 | ║ 19 │ // get mentioned bots ║ 24 | ║ 20 │ // may gen false positives, but that is fine ║ 25 | ║ 21 │ cn := ST.CM.ClosestN(strings.ToLower(removeAccents(m.BODY)), 5) ║ 26 | ║ 22 │ for j, id := range cn { ║ 27 | ║ 23 │ ws[id] += max(0, len(ST.Bots)/2+10-i*i-j*j) ║ 28 | ║ 24 │ } ║ 29 | ║ 25 │ ║ 30 | ║ 26 │ // add weight to bot w/ recent msg ║ 31 | ║ 27 │ if w, ok := ws[m.USER.ID]; ok { ║ 32 | ║ 28 │ w += len(ST.Bots) / 2 ║ 33 | ║ 29 │ } ║ 34 | ║ 30 │ } ║ 35 | ║ 31 │ ║ 36 | ║ 32 │ // replicate bots into weighted list ║ 37 | ║ 33 │ bs := make([]*Bot, 0, len(ST.Bots)*2) ║ 38 | ║ 34 │ for id, n := range ws { ║ 39 | ║ 35 │ for j := 0; j < n; j++ { ║ 40 | ║ 36 │ bs = append(bs, ST.BotMap[id]) ║ 41 | ║ 37 │ } ║ 42 | ║ 38 │ } ║ 43 | ║ 39 │ ║ 44 | ║ 40 │ return bs, lU ║ 45 | ║ 41 │ } ║ 46 | ║ ║ 47 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 48 | -------------------------------------------------------------------------------- /txt/header.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 3 | 4 | 5 | 2 8 2 8 6 | 2 8 2 8 7 | 2 8 2 8 2 8 8 | 2 8 2 8 9 | 2 8 2 8 2 8 2 8 2 8 2 8 2 8 2 82 8 10 | 2 8 2 8 2 8 2 8 2 8 2 8 8 2 8 2 8 11 | 2 8 2 8 2 8 2 8 2 8 2 8 2 8 12 | 2 8 2 8 2 8 2 8 2 8 2 8 2 8 2 8 13 | 2 8 2 8 2 8 2 8 2 8 2 8 2 8 2 8 14 | 15 | 16 | 17 | 18 | . 8 19 | . 8 20 | . 8 21 | 22 | . 8 23 | . 8 24 | -------------------------------------------------------------------------------- /txt/header.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║ 3 | ║ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║ 4 | ║ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║ 5 | ║ ░░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░░░░░ ║ 6 | ║ ░░░░░░░░░░░░██ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ ░░░░░░░░░░░░░░░░░░░░░ ║ 7 | ║ ░░░░░░░░░░░░██ ░░░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ ░░░░░░░░░░░░░░░░░░░░░ ║ 8 | ║ ░░░░░░░░░░░░██ ░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ ░░░░░░░░░░░░░░░░░░░░░ ║ 9 | ║ ░░░░░░░░░░░░██ ░░░██░░░░░░░░██░░░░░░████░░████░░░░██████░░░░░░██████░░░░██ ░████░░░░░░░░░░░░░░░░ ║ 10 | ║ ░░░░░░░░░░░░██ ░██⋰ ░░░██████ ░░░░░░ ████⋰ ░██⋰ ░░░██⋰ ░░░████⋰ ██░░░░░░░░░░░░░░ ║ 11 | ║ ░░░░░░░░░░░░████ ░░░░░░ ██ ░░░░░░░██ ░░░░░░ ██████░░░░██ ░░░░░░░░░██ ░░░██ ░░░░░░░░░░░░░ ║ 12 | ║ ░░░░░░░░░░░░██ ██░░░░░░░░░░██ ░░░░░░░██ ░░░░░░░░░░ ██░░██ ░░░░░██░░██ ░░░░░██ ░░░░░░░░░░░░░ ║ 13 | ║ ░░░░░░░░░░░░██ ░░ ████░░░░░░░ ████░░░░██ ░░░░░░░░░██████⋰ ░░ ██████⋰ ░██ ░░░░░██ ░░░░░░░░░░░░░ ║ 14 | ║ ░░░░░░░░░░░░░ ░░░░ ░░░░░░░░ ░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░ ░░░░░░ ░░░░░░░░░░░░░ ║ 15 | ║ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║ 16 | ║ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║ 17 | ║ ░░░░░░░░░░░░░░░░░░░ ╓─────────────────────────────────────────────────────╖ ░░░░░░░░░░░░░░░░░░░░ ║ 18 | ║ ░░░░░░░░░░░░░░░░░░░ ║ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z ║ ░░░░░░░░░░░░░░░░░░░░ ║ 19 | ║ ░░░░░░░░░░░░░░░░░░░ ║ a b c d e f g h i j k l m n o p q r s t u v w x y z ║ ░░░░░░░░░░░░░░░░░░░░ ║ 20 | ║ ░░░░░░░░░░░░░░░░░░░ ║ 1 2 3 4 5 & 6 7 8 9 0 ║ ░░░░░░░░░░░░░░░░░░░░ ║ 21 | ║ ░░░░░░░░░░░░░░░░░░░ ╟─────────────────────────────────────────────────────╢ ░░░░░░░░░░░░░░░░░░░░ ║ 22 | ║ ░░░░░░░░░░░░░░░░░░░ ║ . , ; : = ~ - * # % @ ` ^ ' " $ ! ? ║ ░░░░░░░░░░░░░░░░░░░░ ║ 23 | ║ ░░░░░░░░░░░░░░░░░░░ ║ < { ( [ \ | / ] ) } > ║ ░░░░░░░░░░░░░░░░░░░░ ║ 24 | ║ ░░░░░░░░░░░░░░░░░░░ ╙─────────────────────────────────────────────────────╜ ░░░░░░░░░░░░░░░░░░░░ ║ 25 | ║ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║ 26 | ║ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║ 27 | ║ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║ 28 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 29 | -------------------------------------------------------------------------------- /txt/map.clr: -------------------------------------------------------------------------------- 1 | 1 2 | 8 3 | 5 1 8. 4 | 5 1 8. 5 | 5 1 8. 6 | 5 1 8. 7 | 5 1 8. 8 | 5 1 8. 9 | 5 1 8. 10 | 5 1 8. 11 | 5 1 8. 12 | 5 1 8. 13 | 5 1 8. 14 | 5 1 8. 15 | 5 1 8. 16 | 5 1 8. 17 | 5 1 8. 18 | 5 1 8. 19 | 5 1 8. 20 | 5 1 8. 21 | 5 1 8. 22 | 5 1 8. 23 | 5 1 8. 24 | 5 1 8. 25 | 5 1 8. 26 | 5 1 8. 27 | 5 1 8. 28 | 5 1 8. 29 | 5 1 8. 30 | 5 1 8. 31 | 5 1 8. 32 | 5 1 8. 33 | 5 1 8. 34 | 5 1 8. 35 | 5 1 8. 36 | 5 1 8. 37 | 5 1 8. 38 | 5 1 8. 39 | 5 1 8. 40 | 5 1 8. 41 | 5 1 8. 42 | 5 1 8. 43 | 5 1 8. 44 | 5 1 8. 45 | 5 1 8. 46 | 5 1 8. 47 | 5 1 8. 48 | 5 1 8. 49 | 5 1 8. 50 | 5 1 8. 51 | 5 1 8. 52 | 5 1 8. 53 | 5 1 8. 54 | 5 1 8. 55 | 5 1 8. 56 | 5 1 8. 57 | 5 1 8. 58 | 5 1 8. 59 | 5 1 8. 60 | 5 1 8. 61 | 5 1 8. 62 | 5 1 8. 63 | 5 1 8. 64 | 5 1 8. 65 | 5 1 8. 66 | 5 1 8. 67 | 5 1 8. 68 | 5 1 8. 69 | 5 1 8. 70 | 5 1 8. 71 | 5 1 8. 72 | 5 1 8. 73 | 5 1 8. 74 | 5 1 8. 75 | 5 1 8. 76 | 5 1 8. 77 | 5 1 8. 78 | 5 1 8. 79 | 5 1 8. 80 | 5 1 8. 81 | 5 1 8. 82 | 5 1 8. 83 | 5 1 8. 84 | 5 1 8. 85 | 5 1 8. 86 | 5 1 8. 87 | 5 1 8. 88 | 5 1 8. 89 | 5 1 8. 90 | 5 1 8. 91 | 5 1 8. 92 | 5 1 8. 93 | 5 1 8. 94 | 5 1 8. 95 | 5 1 8. 96 | 5 1 8. 97 | 5 1 8. 98 | 5 1 8. 99 | 5 1 8. 100 | 5 1 8. 101 | 5 1 8. 102 | 5 1 8. 103 | 5 1 8. 104 | 5 1 8. 105 | 5 1 8. 106 | 5 1 8. 107 | 5 1 8. 108 | 5 1 8. 109 | 5 1 8. 110 | 5 1 8. 111 | 5 1 8. 112 | 5 1 8. 113 | 5 1 8. 114 | 5 1 8. 115 | 5 1 8. 116 | 5 1 8. 117 | 5 1 8. 118 | 5 1 8. 119 | 5 1 8. 120 | 5 1 8. 121 | 5 1 8. 122 | 5 1 8. 123 | 5 1 8. 124 | 5 1 8. 125 | 5 1 8. 126 | 5 1 8. 127 | 5 1 8. 128 | 5 1 8. 129 | 5 1 8. 130 | 5 1 8. 131 | 5 1 8. 132 | 5 1 8. 133 | 5 1 8. 134 | 5 1 8. 135 | 5 1 8. 136 | 5 1 8. 137 | 5 1 8. 138 | 5 1 8. 139 | 5 1 8. 140 | 5 1 8. 141 | 5 1 8. 142 | 5 1 8. 143 | 5 1 8. 144 | 5 1 8. 145 | 5 1 8. 146 | 5 1 8. 147 | 5 1 8. 148 | 5 1 8. 149 | 5 1 8. 150 | 5 1 8. 151 | 5 1 8. 152 | 5 1 8. 153 | 5 1 8. 154 | 5 1 8. 155 | 5 1 8. 156 | 5 1 8. 157 | 5 1 8. 158 | 5 1 8. 159 | 5 1 8. 160 | 5 1 8. 161 | 5 1 8. 162 | 5 1 8. 163 | 5 1 8. 164 | 5 1 8. 165 | 5 1 8. 166 | 5 1 8. 167 | 5 1 8. 168 | 5 1 8. 169 | 5 1 8. 170 | 5 1 8. 171 | 5 1 8. 172 | 5 1 8. 173 | 5 1 8. 174 | 5 1 8. 175 | 5 1 8. 176 | 5 1 8. 177 | 5 1 8. 178 | 5 1 8. 179 | 5 1 8. 180 | 5 1 8. 181 | 5 1 8. 182 | 5 1 8. 183 | 5 1 8. 184 | 5 1 8. 185 | 5 1 8. 186 | 5 1 8. 187 | 5 1 8. 188 | 5 1 8. 189 | 5 1 8. 190 | 5 1 8. 191 | 5 1 8. 192 | 5 1 8. 193 | 5 1 8. 194 | 5 1 8. 195 | 5 1 8. 196 | 5 1 8. 197 | 5 1 8. 198 | 5 1 8. 199 | 5 1 8. 200 | 5 1 8. 201 | 5 1 8. 202 | 5 1 8. 203 | 5 1 8. 204 | 5 1 8. 205 | 5 1 8. 206 | 5 1 8. 207 | 5 1 8. 208 | 5 1 8. 209 | 5 1 8. 210 | 5 1 8. 211 | 5 1 8. 212 | 5 1 8. 213 | 5 1 8. 214 | 5 1 8. 215 | 5 1 8. 216 | 5 1 8. 217 | 5 1 8. 218 | 5 1 8. 219 | 5 1 8. 220 | 5 1 8. 221 | 5 1 8. 222 | 5 1 8. 223 | 5 1 8. 224 | 5 1 8. 225 | 5 1 8. 226 | 5 1 8. 227 | 5 1 8. 228 | 5 1 8. 229 | 5 1 8. 230 | 5 1 8. 231 | 5 1 8. 232 | 5 1 8. 233 | 5 1 8. 234 | 5 1 8. 235 | 5 1 8. 236 | 5 1 8. 237 | 5 1 8. 238 | 5 1 8. 239 | 5 1 8. 240 | 5 1 8. 241 | 5 1 8. 242 | 5 1 8. 243 | 5 1 8. 244 | 5 1 8. 245 | 5 1 8. 246 | 5 1 8. 247 | 5 1 8. 248 | 5 1 8. 249 | 5 1 8. 250 | 5 1 8. 251 | 5 1 8. 252 | 5 1 8. 253 | 5 1 8. 254 | 5 1 8. 255 | 5 1 8. 256 | 5 1 8. 257 | 5 1 8. 258 | 5 1 8. 259 | 5 1 8. 260 | 5 1 8. 261 | 5 1 8. 262 | 5 1 8. 263 | 5 1 8. 264 | 5 1 8. 265 | 5 1 8. 266 | 5 1 8. 267 | 5 1 8. 268 | 5 1 8. 269 | 5 1 8. 270 | 5 1 8. 271 | 5 1 8. 272 | 5 1 8. 273 | 5 1 8. 274 | 5 1 8. 275 | 5 1 8. 276 | 5 1 8. 277 | 5 1 8. 278 | 5 1 8. 279 | 5 1 8. 280 | 5 1 8. 281 | 5 1 8. 282 | 5 1 8. 283 | 5 1 8. 284 | 5 1 8. 285 | 5 1 8. 286 | 5 1 8. 287 | 5 1 8. 288 | 5 1 8. 289 | 5 1 8. 290 | 5 1 8. 291 | 5 1 8. 292 | 5 1 8. 293 | 5 1 8. 294 | 5 1 8. 295 | 5 1 8. 296 | 5 1 8. 297 | 5 1 8. 298 | 5 1 8. 299 | 5 1 8. 300 | 5 1 8. 301 | 5 1 8. 302 | 5 1 8. 303 | 5 1 8. 304 | 5 1 8. 305 | 5 1 8. 306 | 5 1 8. 307 | 5 1 8. 308 | 5 1 8. 309 | 5 1 8. 310 | 5 1 8. 311 | 5 1 8. 312 | 5 1 8. 313 | 5 1 8. 314 | 5 1 8. 315 | 5 1 8. 316 | 5 1 8. 317 | 5 1 8. 318 | 5 1 8. 319 | 5 1 8. 320 | 5 1 8. 321 | 5 1 8. 322 | 5 1 8. 323 | 5 1 8. 324 | 5 1 8. 325 | 5 1 8. 326 | 5 1 8. 327 | 5 1 8. 328 | 5 1 8. 329 | 5 1 8. 330 | 5 1 8. 331 | 5 1 8. 332 | 5 1 8. 333 | 5 1 8. 334 | 5 1 8. 335 | 5 1 8. 336 | 5 1 8. 337 | 5 1 8. 338 | 5 1 8. 339 | 5 1 8. 340 | 5 1 8. 341 | 5 1 8. 342 | 5 1 8. 343 | 5 1 8. 344 | 5 1 8. 345 | 5 1 8. 346 | 5 1 8. 347 | 5 1 8. 348 | 5 1 8. 349 | 5 1 8. 350 | 5 1 8. 351 | 5 1 8. 352 | 5 1 8. 353 | 5 1 8. 354 | 5 1 8. 355 | 5 1 8. 356 | 5 1 8. 357 | 5 1 8. 358 | 5 1 8. 359 | 5 1 8. 360 | 5 1 8. 361 | 5 1 8. 362 | 5 1 8. 363 | 5 1 8. 364 | 5 1 8. 365 | 5 1 8. 366 | 5 1 8. 367 | 5 1 8. 368 | 5 1 8. 369 | 5 1 8. 370 | 5 1 8. 371 | 5 1 8. 372 | 5 1 8. 373 | 5 1 8. 374 | 5 1 8. 375 | 5 1 8. 376 | 5 1 8. 377 | 5 1 8. 378 | 5 1 8. 379 | 5 1 8. 380 | 5 1 8. 381 | 5 1 8. 382 | 5 1 8. 383 | 5 1 8. 384 | 5 1 8. 385 | 5 1 8. 386 | 5 1 8. 387 | 5 1 8. 388 | 5 1 8. 389 | 5 1 8. 390 | 5 1 8. 391 | 5 1 8. 392 | 5 1 8. 393 | 5 1 8. 394 | 5 1 8. 395 | 5 1 8. 396 | 5 1 8. 397 | 5 1 8. 398 | 5 1 8. 399 | 5 1 8. 400 | 5 1 8. 401 | 5 1 8. 402 | 5 1 8. 403 | 5 1 8. 404 | 5 1 8. 405 | 5 1 8. 406 | 5 1 8. 407 | 5 1 8. 408 | 5 1 8. 409 | 5 1 8. 410 | 5 1 8. 411 | 5 1 8. 412 | 5 1 8. 413 | 5 1 8. 414 | 5 1 8. 415 | 5 1 8. 416 | 5 1 8. 417 | 5 1 8. 418 | 5 1 8. 419 | 5 1 8. 420 | 5 1 8. 421 | 5 1 8. 422 | 5 1 8. 423 | 5 1 8. 424 | 5 1 8. 425 | 5 1 8. 426 | 5 1 8. 427 | 5 1 8. 428 | 5 1 8. 429 | 5 1 8. 430 | 5 1 8. 431 | 5 1 8. 432 | 5 1 8. 433 | 5 1 8. 434 | 5 1 8. 435 | 5 1 8. 436 | 5 1 8. 437 | 5 1 8. 438 | 5 1 8. 439 | 5 1 8. 440 | 5 1 8. 441 | 5 1 8. 442 | 5 1 8. 443 | 5 1 8. 444 | 5 1 8. 445 | 5 1 8. 446 | 5 1 8. 447 | 5 1 8. 448 | 5 1 8. 449 | 5 1 8. 450 | 5 1 8. 451 | 5 1 8. 452 | 5 1 8. 453 | 5 1 8. 454 | 5 1 8. 455 | 5 1 8. 456 | 5 1 8. 457 | 5 1 8. 458 | 5 1 8. 459 | 5 1 8. 460 | 5 1 8. 461 | 5 1 8. 462 | 5 1 8. 463 | 5 1 8. 464 | 5 1 8. 465 | 5 1 8. 466 | 5 1 8. 467 | 5 1 8. 468 | 5 1 8. 469 | 5 1 8. 470 | 5 1 8. 471 | 5 1 8. 472 | 5 1 8. 473 | 5 1 8. 474 | 5 1 8. 475 | 5 1 8. 476 | 5 1 8. 477 | 5 1 8. 478 | 5 1 8. 479 | 5 1 8. 480 | 5 1 8. 481 | 5 1 8. 482 | 5 1 8. 483 | 5 1 8. 484 | 5 1 8. 485 | 5 1 8. 486 | 5 1 8. 487 | 5 1 8. 488 | 5 1 8. 489 | 5 1 8. 490 | 5 1 8. 491 | 5 1 8. 492 | 5 1 8. 493 | 5 1 8. 494 | 5 1 8. 495 | 5 1 8. 496 | 5 1 8. 497 | 5 1 8. 498 | 5 1 8. 499 | 5 1 8. 500 | 5 1 8. 501 | 5 1 8. 502 | 5 1 8. 503 | 5 1 8. 504 | 5 1 8. 505 | 5 1 8. 506 | 5 1 8. 507 | 5 1 8. 508 | 5 1 8. 509 | 5 1 8. 510 | 5 1 8. 511 | 5 1 8. 512 | 5 1 8. 513 | 5 1 8. 514 | 5 1 8. 515 | 5 1 8. 516 | 5 1 8. 517 | 5 1 8. 518 | 5 1 8. 519 | 5 1 8. 520 | 5 1 8. 521 | 5 1 8. 522 | 5 1 8. 523 | 5 1 8. 524 | 5 1 8. 525 | 5 1 8. 526 | 5 1 8. 527 | 5 1 8. 528 | 5 1 8. 529 | 5 1 8. 530 | 5 1 8. 531 | 5 1 8. 532 | 5 1 8. 533 | 5 1 8. 534 | 5 1 8. 535 | 5 1 8. 536 | 5 1 8. 537 | 5 1 8. 538 | 5 1 8. 539 | 5 1 8. 540 | 5 1 8. 541 | 5 1 8. 542 | 5 1 8. 543 | 5 1 8. 544 | 5 1 8. 545 | 5 1 8. 546 | 5 1 8. 547 | 5 1 8. 548 | 5 1 8. 549 | 5 1 8. 550 | 5 1 8. 551 | 5 1 8. 552 | 5 1 8. 553 | 5 1 8. 554 | 5 1 8. 555 | 5 1 8. 556 | 5 1 8. 557 | 5 1 8. 558 | 5 1 8. 559 | 5 1 8. 560 | 5 1 8. 561 | 5 1 8. 562 | 5 1 8. 563 | 5 1 8. 564 | 5 1 8. 565 | 5 1 8. 566 | 5 1 8. 567 | 5 1 8. 568 | 5 1 8. 569 | 5 1 8. 570 | 5 1 8. 571 | 5 1 8. 572 | 5 1 8. 573 | 5 1 8. 574 | 5 1 8. 575 | 5 1 8. 576 | 5 1 8. 577 | 5 1 8. 578 | 5 1 8. 579 | 5 1 8. 580 | 5 1 8. 581 | 5 1 8. 582 | 5 1 8. 583 | 5 1 8. 584 | 5 1 8. 585 | 5 1 8. 586 | 5 1 8. 587 | 5 1 8. 588 | 5 1 8. 589 | 5 1 8. 590 | 5 1 8. 591 | 5 1 8. 592 | 5 1 8. 593 | 5 1 8. 594 | 5 1 8. 595 | 5 1 8. 596 | 5 1 8. 597 | 5 1 8. 598 | 5 1 8. 599 | 5 1 8. 600 | 5 1 8. 601 | 5 1 8. 602 | 5 1 8. 603 | 5 1 8. 604 | 5 1 8. 605 | 5 1 8. 606 | 5 1 8. 607 | 5 1 8. 608 | 5 1 8. 609 | 5 1 8. 610 | 5 1 8. 611 | 5 1 8. 612 | 5 1 8. 613 | 5 1 8. 614 | 5 1 8. 615 | 5 1 8. 616 | 5 1 8. 617 | 5 1 8. 618 | 5 1 8. 619 | 5 1 8. 620 | 5 1 8. 621 | 5 1 8. 622 | 5 1 8. 623 | 5 1 8. 624 | 5 1 8. 625 | 5 1 8. 626 | 5 1 8. 627 | 5 1 8. 628 | 5 1 8. 629 | 5 1 8. 630 | 5 1 8. 631 | 5 1 8. 632 | 5 1 8. 633 | 5 1 8. 634 | 5 1 8. 635 | 5 1 8. 636 | 5 1 8. 637 | 5 1 8. 638 | 5 1 8. 639 | 5 1 8. 640 | 5 1 8. 641 | 5 1 8. 642 | 5 1 8. 643 | 5 1 8. 644 | 5 1 8. 645 | 5 1 8. 646 | 5 1 8. 647 | 5 1 8. 648 | 5 1 8. 649 | 5 1 8. 650 | 5 1 8. 651 | 5 1 8. 652 | 5 1 8. 653 | 5 1 8. 654 | 5 1 8. 655 | 5 1 8. 656 | 5 1 8. 657 | 5 1 8. 658 | 5 1 8. 659 | 5 1 8. 660 | 5 1 8. 661 | 5 1 8. 662 | 5 1 8. 663 | 5 1 8. 664 | 5 1 8. 665 | 5 1 8. 666 | 5 1 8. 667 | 5 1 8. 668 | 5 1 8. 669 | 5 1 8. 670 | 5 1 8. 671 | 5 1 8. 672 | 5 1 8. 673 | 5 1 8. 674 | 5 1 8. 675 | 5 1 8. 676 | 5 1 8. 677 | 5 1 8. 678 | 5 1 8. 679 | 5 1 8. 680 | 5 1 8. 681 | 5 1 8. 682 | 5 1 8. 683 | 5 1 8. 684 | 5 1 8. 685 | 5 1 8. 686 | 5 1 8. 687 | 5 1 8. 688 | 5 1 8. 689 | 5 1 8. 690 | 5 1 8. 691 | 5 1 8. 692 | 5 1 8. 693 | 5 1 8. 694 | 5 1 8. 695 | 5 1 8. 696 | 5 1 8. 697 | 5 1 8. 698 | 5 1 8. 699 | 5 1 8. 700 | 5 1 8. 701 | 5 1 8. 702 | 5 1 8. 703 | 5 1 8. 704 | 5 1 8. 705 | 5 1 8. 706 | 5 1 8. 707 | 5 1 8. 708 | 5 1 8. 709 | 5 1 8. 710 | 5 1 8. 711 | 5 1 8. 712 | 5 1 8. 713 | 5 1 8. 714 | 5 1 8. 715 | 5 1 8. 716 | 5 1 8. 717 | 5 1 8. 718 | 5 1 8. 719 | 5 1 8. 720 | 5 1 8. 721 | 5 1 8. 722 | 5 1 8. 723 | 5 1 8. 724 | 5 1 8. 725 | 5 1 8. 726 | 5 1 8. 727 | 5 1 8. 728 | 5 1 8. 729 | 5 1 8. 730 | 5 1 8. 731 | 5 1 8. 732 | 5 1 8. 733 | 5 1 8. 734 | 5 1 8. 735 | 5 1 8. 736 | 5 1 8. 737 | 5 1 8. 738 | 5 1 8. 739 | 5 1 8. 740 | 5 1 8. 741 | 5 1 8. 742 | 5 1 8. 743 | 5 1 8. 744 | 5 1 8. 745 | 5 1 8. 746 | 5 1 8. 747 | 5 1 8. 748 | 5 1 8. 749 | 5 1 8. 750 | 5 1 8. 751 | 5 1 8. 752 | 5 1 8. 753 | 5 1 8. 754 | 5 1 8. 755 | 5 1 8. 756 | 5 1 8. 757 | 5 1 8. 758 | 5 1 8. 759 | 5 1 8. 760 | 5 1 8. 761 | 5 1 8. 762 | 5 1 8. 763 | 5 1 8. 764 | 5 1 8. 765 | 5 1 8. 766 | 5 1 8. 767 | 5 1 8. 768 | 5 1 8. 769 | 5 1 8. 770 | 5 1 8. 771 | 5 1 8. 772 | 5 1 8. 773 | 5 1 8. 774 | 5 1 8. 775 | 5 1 8. 776 | 5 1 8. 777 | 5 1 8. 778 | 5 1 8. 779 | 5 1 8. 780 | 5 1 8. 781 | 5 1 8. 782 | 5 1 8. 783 | 5 1 8. 784 | 5 1 8. 785 | 5 1 8. 786 | 5 1 8. 787 | 5 1 8. 788 | 5 1 8. 789 | 5 1 8. 790 | 5 1 8. 791 | 5 1 8. 792 | 5 1 8. 793 | 5 1 8. 794 | 5 1 8. 795 | 5 1 8. 796 | 5 1 8. 797 | 5 1 8. 798 | 5 1 8. 799 | 5 1 8. 800 | 5 1 8. 801 | 5 1 8. 802 | 5 1 8. 803 | 5 1 8. 804 | 5 1 8. 805 | 5 1 8. 806 | 5 1 8. 807 | 5 1 8. 808 | 5 1 8. 809 | 5 1 8. 810 | 5 1 8. 811 | 5 1 8. 812 | 5 1 8. 813 | 5 1 8. 814 | 5 1 8. 815 | 5 1 8. 816 | 5 1 8. 817 | 5 1 8. 818 | 5 1 8. 819 | 5 1 8. 820 | 5 1 8. 821 | 5 1 8. 822 | 5 1 8. 823 | 5 1 8. 824 | 5 1 8. 825 | 5 1 8. 826 | 5 1 8. 827 | 5 1 8. 828 | 5 1 8. 829 | 5 1 8. 830 | 5 1 8. 831 | 5 1 8. 832 | 5 1 8. 833 | 5 1 8. 834 | 5 1 8. 835 | 5 1 8. 836 | 5 1 8. 837 | 5 1 8. 838 | 5 1 8. 839 | 5 1 8. 840 | 5 1 8. 841 | 5 1 8. 842 | 5 1 8. 843 | 5 1 8. 844 | 5 1 8. 845 | 5 1 8. 846 | 5 1 8. 847 | 5 1 8. 848 | 5 1 8. 849 | 5 1 8. 850 | 5 1 8. 851 | 5 1 8. 852 | 5 1 8. -------------------------------------------------------------------------------- /txt/math.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | . 8 6 | 7 | . 8 8 | 9 | . 8 10 | 11 | . 8 12 | 13 | . 8 14 | 15 | . 8 16 | 17 | . 8 18 | . 8 19 | . 8 20 | . 8 21 | . 8 22 | -------------------------------------------------------------------------------- /txt/math.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ MATH/SCIENCE ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ ∮ e⋅da = q, n → ∞, ∑ f(i) = ∏ g(i), ║ 6 | ║ ║ 7 | ║ ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β), ║ 8 | ║ ║ 9 | ║ ⟦ ℤ ⊂ ℚ ⊂ ℝ ⊂ ℂ ⊂ ℕ ⊆ ℕ₀ ⟧, ║ 10 | ║ ║ 11 | ║ a ≠ b ≡ c ≤ d ≥ e (⟪a⟫ ⇔ ⟪b⟫) ║ 12 | ║ ║ 13 | ║ 2h₂ + o₂ ⇌ 2h₂o, r = 4.7 kω, ║ 14 | ║ ║ 15 | ║ ∆d ≈ √2, ∛5, ⌀200 mm, ∠±30°, ⊾ ⊿ ║ 16 | ║ ║ 17 | ║ ⎧ ⎡ ⎛ ⎞ ⎤ ⎫ ⌠ ┌─────┐ ∞ ║ 18 | ║ ⎪ ⎢ ⎜ ⎟ ⎥ ⎪ ⎮ │a²+b³ ⎲ ║ 19 | ║ ⎨ ⎢ ⎜ ⎟ ⎥ ⎬ ⎮ │───── ⎳ aⁱ-bⁱ ║ 20 | ║ ⎪ ⎢ ⎜ ⎟ ⎥ ⎪ ⎮ ⎷ c₈ i=1 ║ 21 | ║ ⎩ ⎣ ⎝ ⎠ ⎦ ⎭ ⌡ ║ 22 | ║ ║ 23 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 24 | -------------------------------------------------------------------------------- /txt/multi.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | . 8 6 | . 8 7 | 8 | 9 | 10 | 2 8 11 | 12 | 13 | . 8 14 | . 8 15 | 16 | 17 | 18 | 2 8 19 | 20 | 21 | . 8 22 | . 8 23 | 24 | 25 | 26 | 2 8 27 | 28 | 29 | . 8 30 | . 8 31 | 32 | 33 | 34 | 2 8 35 | 36 | 37 | . 8 38 | . 8 39 | 40 | 41 | 42 | 2 8 43 | 44 | 45 | . 8 46 | . 8 47 | 48 | 49 | 50 | 2 8 51 | 52 | 53 | . 8 54 | . 8 55 | 56 | 57 | -------------------------------------------------------------------------------- /txt/multi.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ CZECH ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ Příliš žluťoučký kůň úpěl ďábelské ó. ║ 6 | ║ PŘÍLIŠ ŽLUŤOUČKÝ KŮŇ ÚPĚL ĎÁBELSKÉ Ó. ║ 7 | ║ ║ 8 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 9 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 10 | ║ ICELANDIC ║ 11 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 12 | ║ ║ 13 | ║ Kæmi ný öxi hér, ykist þjófum nú bæði víl og ádrepa. ║ 14 | ║ KÆMI NÝ ÖXI HÉR, YKIST ÞJÓFUM NÚ BÆÐI VÍL OG ÁDREPA. ║ 15 | ║ ║ 16 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 17 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 18 | ║ POLISH ║ 19 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 20 | ║ ║ 21 | ║ Jeżu klątw, spłódź Finom część gry hańb! ║ 22 | ║ JEŻU KLĄTW, SPŁÓDŹ FINOM CZĘŚĆ GRY HAŃB! ║ 23 | ║ ║ 24 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 25 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 26 | ║ ROMANIAN ║ 27 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 28 | ║ ║ 29 | ║ Muzicologă în bej vând whisky și tequila, preț fix. ║ 30 | ║ MUZICOLOGĂ ÎN BEJ VÂND WHISKY ȘI TEQUILA, PREȚ FIX. ║ 31 | ║ ║ 32 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 33 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 34 | ║ TURKISH ║ 35 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 36 | ║ ║ 37 | ║ Fahiş bluz güvencesi yağdırma projesi çöktü. ║ 38 | ║ FAHIŞ BLUZ GÜVENCESI YAĞDIRMA PROJESI ÇÖKTÜ. ║ 39 | ║ ║ 40 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 41 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 42 | ║ CYRILLIC ║ 43 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 44 | ║ ║ 45 | ║ Съешь ещё этих мягких французских булок, да выпей же чаю. ║ 46 | ║ СЪЕШЬ ЕЩЁ ЭТИХ МЯГКИХ ФРАНЦУЗСКИХ БУЛОК, ДА ВЫПЕЙ ЖЕ ЧАЮ. ║ 47 | ║ ║ 48 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 49 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 50 | ║ GREEK ║ 51 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 52 | ║ ║ 53 | ║ διαφυλάξτε γενικά τη ζωή σας από βαθειά ψυχικά τραύματα. ║ 54 | ║ ΔΙΑΦΥΛΑΞΤΕ ΓΕΝΙΚΑ ΤΗ ΖΩΗ ΣΑΣ ΑΠΟ ΒΑΘΕΙΑ ΨΥΧΙΚΑ ΤΡΑΥΜΑΤΑ. ║ 55 | ║ ║ 56 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 57 | -------------------------------------------------------------------------------- /txt/nerd.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | D 8 6 | 7 | 9 8 8 | 9 | 3 8 10 | 11 | 12 | B 7 8 13 | 14 | F . A 7 F 7 8 15 | D . 8 1 . 8 C . 8 16 | 9 . 8 F . 8 A . 8 17 | A . 8 B . 8 3 . 8 18 | B . 8 3 . 8 B . 8 19 | C . 8 C . 8 20 | E . 8 B . 8 21 | C . 8 22 | D . 8 23 | 3 . 8 24 | B . 8 25 | E . 8 26 | -------------------------------------------------------------------------------- /txt/nerd.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ NERD FONTS ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║                         ║ 6 | ║ ║ 7 | ║            ║ 8 | ║ ║ 9 | ║ ⏻ ⏼ ⏽ ⏾ ⭘ ║ 10 | ║ ║ 11 | ║ ║ 12 | ║  root/ ║ 13 | ║ ├───────────────────┬───────────────────────┐ ║ 14 | ║ ├── 󰈚 text.txt  dev/  libreoffice/ ║ 15 | ║ ├──  image.png ├──  .gitignore ├──  document.odt ║ 16 | ║ ├──  video.mp4 ├──  README.md ├──  spreadsheet.ods ║ 17 | ║ ├──  table.csv └──  src/ ├──  presentation.odp ║ 18 | ║ ├──  archive.zip ├──  index.html └──  graphic.odg ║ 19 | ║ ├──  database.db ├──  style.css ║ 20 | ║ └── 󰆧 3d.fbx ├──  script.js ║ 21 | ║ ├──  types.ts ║ 22 | ║ ├──  main.hs ║ 23 | ║ ├──  lib.rs ║ 24 | ║ ├──  test.py ║ 25 | ║ └──  main.go ║ 26 | ║ ║ 27 | ║ ║ 28 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 29 | -------------------------------------------------------------------------------- /txt/pretty.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | 6 | 7 | 7 2 . 2 . 8 8 | 9 | 7 . 2 8 10 | 11 | 7 . 4 8 12 | 13 | 7 2 8 14 | 15 | 7 4. 4. 4. 4. 353. 4. 53.53. 4. 4 8 16 | 17 | 7 . B . B . B 8 18 | 8 19 | 7 . 8 3 1 8 20 | -------------------------------------------------------------------------------- /txt/pretty.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ PRETTY PLAIN TEXT ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ ╔═════════════════════════════════════════════╗ ║ 6 | ║ ║ ║ ║ 7 | ║ ║ • ‘single’ and “double” quotes ║ ║ 8 | ║ ║ ║ ║ 9 | ║ ║ • Curly apostrophes: “We’ve been here” ║ ║ 10 | ║ ║ ║ ║ 11 | ║ ║ • Latin-1 apostrophe and accents: '´` ║ ║ 12 | ║ ║ ║ ║ 13 | ║ ║ • ‚deutsche‘ „Anführungszeichen“ ║ ║ 14 | ║ ║ ║ ║ 15 | ║ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║ ║ 16 | ║ ║ ║ ║ 17 | ║ ║ • ASCII safety test: 1lI|, 0OD, 8B ║ ║ 18 | ║ ║ ╭─────────╮ ║ ║ 19 | ║ ║ • the euro symbol: │ 14.95 € │ ║ ║ 20 | ║ ║ ╰─────────╯ ║ ║ 21 | ║ ╚═════════════════════════════════════════════╝ ║ 22 | ║ ║ 23 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 24 | -------------------------------------------------------------------------------- /txt/prog.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | . 8 6 | . 8 7 | . 8 8 | . 8 9 | . 8 10 | -------------------------------------------------------------------------------- /txt/prog.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║ GENERAL PROGRAMMING ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ o0O s5S 9gq z2Z !|l1Iij {([|])} .,;: ``''"" ║ 6 | ║ a@#* vVuUwW <>;^°=-~ öÖüÜäÄßµ // -- == __ ║ 7 | ║ the quick brown fox jumps over the lazy dog ║ 8 | ║ THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG ║ 9 | ║ 0123456789 &-+@ for (int i=0; i<=j; ++i) {} ║ 10 | ║ ║ 11 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 12 | -------------------------------------------------------------------------------- /txt/sample.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | . 8 6 | . 8 7 | . 8 8 | . 8 9 | . 8 10 | 11 | 12 | 8 13 | 2 8 14 | 15 | 16 | . 8 17 | . 8 18 | . 8 19 | . 8 20 | . 8 21 | . 8 22 | . 8 23 | 24 | . 8 25 | . 8 26 | . 8 27 | . 8 28 | . 8 29 | . 8 30 | . 8 31 | 32 | 33 | 8 34 | 2 8 35 | 36 | 37 | . 8 38 | . 8 39 | 40 | 41 | 42 | 2 8 43 | 44 | 45 | . 8 46 | . 8 47 | 48 | 49 | 50 | 2 8 51 | 52 | 53 | . 8 54 | . 8 55 | 56 | 57 | 58 | 2 8 59 | 60 | 61 | . 8 62 | . 8 63 | 64 | 65 | 66 | 2 8 67 | 68 | 69 | . 8 70 | . 8 71 | 72 | 73 | 74 | 2 8 75 | 76 | 77 | . 8 78 | . 8 79 | 80 | 81 | 82 | 2 8 83 | 84 | 85 | . 8 86 | . 8 87 | 88 | 89 | 8 90 | 2 92 8 91 | 92 | 93 | 7 8.4 . 8 94 | 7 8. 8 95 | 7 8.4 B . 8 96 | 7 8. 8 97 | 7 8.6 B . 8 98 | 7 8. 6 . B .B . B . 8 99 | 7 8. 6 . B .B . B . 8 100 | 7 8. 6. B 5 3 8 101 | 7 8. 8 102 | 7 8. 8 103 | 7 8. 5 4 . B 5 8 104 | 7 8. 5 . 5 3 5 3 8 105 | 7 8. 5 8 106 | 7 8. 5 8 107 | 7 8. 6 B . 5 B 8 108 | 7 8. 6 . 5 . 5 8 109 | 7 8. 6 . 5 . 5 8 110 | 7 8. 6 B . 6 8 111 | 7 8. 6 . 5 . 1 .6 5 . 1 .1 . 1 . 8 112 | 7 8. 1 .1 . 1 .3. 5 1 .1 . 1 .1. 8 113 | 7 8. 6 . 5 3 8 114 | 7 8. B . 5 B . 5 . 1 8 115 | 116 | 117 | 8 118 | 2 C2 8 119 | 120 | 121 | 7 8. 5 4 8 122 | 7 8. 8 123 | 7 8. 1 .4 . 8 124 | 7 8. 4 . 1 . 8 125 | 7 8. 8 126 | 7 8. 5 .4 6.4 2 .4 3. 8 127 | 7 8. 4 .4 6 4 . 8 128 | 7 8. 6 . 8 129 | 7 8. 4 . 8 130 | 7 8. 2 . 6 2 . 8 131 | 7 8. 1 . 4 . 6 .4 . 8 132 | 7 8. 4 . 8 133 | 7 8. 4 . 8 134 | 7 8. 8 135 | 7 8. 1 . 8 136 | 7 8. 4 . 8 137 | 138 | 139 | 8 140 | 2 EA 8 141 | 142 | 143 | 7 8.7 8 144 | 7 8.5 .6 5B . 4 .6 . 5B . 5B . B . 8 145 | 7 8. 8 146 | 7 8. 7 8 147 | 7 8. 5 4 .B .B .B . 8 148 | 7 8. 5 2 8 149 | 7 8. B . 5 6 . 8 150 | 7 8. 5 . 5 . 1 . 1 .1 . 8 151 | 7 8. 5 . 8 152 | 7 8. 5 . 1 .1 8 153 | 7 8. 8 154 | 7 8. 8 155 | 7 8. 5 . 5 3 . 8 156 | 7 8. 4 . 4 .2 . 8 157 | 7 8. 5 . 1 . 8 158 | 7 8. 8 159 | 7 8. 8 160 | 7 8. B . 5 6 . 8 161 | 7 8. 7 8 162 | 7 8. 7 8 163 | 7 8. 5 . 1 .4 . 4 .4 . 1 . 3. 8 164 | 7 8. B . 5 6 . 8 165 | 7 8. 5 4 .3. 4 . 1 .5353 5.5.5.5. 8 166 | 7 8. 8 167 | 7 8. 8 168 | 7 8. 7 8 169 | 7 8. 5 . 5 . 1 .1 . 8 170 | 7 8. 5 4 . 1 . 5 3 8 171 | 7 8. 8 172 | 7 8. 8 173 | 7 8. 8 174 | 7 8. 7 8 175 | 7 8. 5 4 . 5B . 3. 4 . 1 .53. 8 176 | 7 8. B . 5 6 . 8 177 | 7 8. B 5 3. 5 . 5 . 8 178 | 7 8. 5 4 . 1 . 8 179 | 7 8. 8 180 | 7 8. 8 181 | 7 8. 8 182 | 7 8. 5 . 8 183 | 7 8. 8 184 | 185 | 186 | 8 187 | 2 32 8 188 | 189 | 190 | 7 8. B 8 191 | 7 8. 1 52.2 8 192 | 7 8. 2 8 193 | 7 8. 2 . 2 8 194 | 7 8. 8 195 | 7 8. B 8 196 | 7 8. 1 52.2 .2 8 197 | 7 8. 1 52 8 198 | 7 8. 8 199 | 7 8. B 1 52 . 8 200 | 7 8. B 1 52 . 8 201 | 7 8. 8 202 | 7 8. B . 8 203 | 7 8. B . 8 204 | 7 8. B 8 205 | 7 8. 1 5. 8 206 | 7 8. 1 52 .2 .2 8 207 | 7 8. 1 5. 8 208 | 7 8. 1 5. 8 209 | 7 8. 1 5. 8 210 | 7 8. 8 211 | 7 8. B 1 52 . 8 212 | 7 8. B 1 52 . B. 8 213 | 7 8. B . 8 214 | 7 8. B . 8 215 | 7 8. B . 8 216 | 217 | 218 | 8 219 | 2 8 220 | 221 | 222 | 7 8. 54.434B. 7 8 223 | 7 8. 54B 7 8 224 | 7 8. 54 .34 B. 7 8 225 | 7 8. 5B 4. 4.4B4. 4. 7 8 226 | 7 8. 5.34. 434 B 7 8 227 | 7 8. 435.34. 434B. 34. 434 B. 7 8 228 | 7 8. 435.34. 434B. 34. 434 B. 7 8 229 | 7 8. 435.43 4. 4 B. 3 4. 4 B. 7 8 230 | 7 8. 435.4 34. 4 B. 434. 4 B. 7 8 231 | 7 8. 435.43 4. 4 B. 3 4. 4 B. 7 8 232 | 7 8. 3 434 B.4.4. 4 B43.4 B. 7 8 233 | 234 | 235 | 8 236 | 2 8 237 | 238 | 239 | 7 8.A . D 8 240 | 7 8. A . DA7ABAB.A3BA7DABAB7A 7A7A.7AB3.ABAB3D37ABA3 A .7AD3 D3D3D 8 241 | 7 8. A B7.A37 ADA. 8 242 | 7 8.D 8 243 | 7 8.A . D 8 244 | 7 8. A 3A . 8 245 | 7 8. A 7A .7A . 8 246 | 7 8. A DA7AD A .7A7A D .7A D A . 8 247 | 7 8.D 8 248 | 7 8.A D A 3 8 249 | 250 | 251 | 8 252 | 2 8 253 | 254 | 255 | A . BCBC3 73 BC BC373 8 256 | C . CABC. 7 8 257 | A . C3 CA D.C3 .C.3 ABA. 8 258 | A . CDA.C3. 7 8 259 | DBA.CDA . C3C 3B.AC3. 3 8 260 | 261 | 262 | 8 263 | 2 8 264 | 265 | 266 | 8 267 | 3 8 268 | 8 269 | . 8 270 | 8 271 | 8 272 | 3 8 273 | 8 274 | . 8 275 | . 8 276 | 8 277 | 8 278 | 3 8 279 | 8 280 | . 8 281 | . 8 282 | . 8 283 | 8 284 | 8 285 | 3 8 286 | 8 287 | . 8 288 | . 8 289 | 8 290 | 8 291 | 3 8 292 | 8 293 | . 8 294 | . 8 295 | 8 296 | 8 297 | 3 8 298 | 8 299 | . 8 300 | . 8 301 | . 8 302 | 8 303 | 8 304 | 3 8 305 | 8 306 | . 8 307 | . 8 308 | . 8 309 | 8 310 | 8 311 | 3 8 312 | 8 313 | . 8 314 | . 8 315 | 8 316 | 8 317 | 3 8 318 | 8 319 | . 8 320 | . 8 321 | 8 322 | 8 323 | 3 8 324 | 8 325 | . 8 326 | . 8 327 | . 8 328 | 8 329 | 8 330 | 3 8 331 | 8 332 | . 8 333 | . 8 334 | . 8 335 | 8 336 | 8 337 | 3 8 338 | 8 339 | . 8 340 | . 8 341 | 342 | 343 | 8 344 | 2 8 345 | 346 | 347 | 348 | 349 | 7 2 . 2 . 8 350 | 351 | 7 . 2 8 352 | 353 | 7 . 4 8 354 | 355 | 7 2 8 356 | 357 | 7 4. 4. 4. 4. 353. 4. 53.53. 4. 4 8 358 | 359 | 7 . B . B . B 8 360 | 8 361 | 7 . 8 3 1 8 362 | 363 | 364 | 365 | 366 | 8 367 | 2 8 368 | 369 | 370 | . 8 371 | 372 | . 8 373 | 374 | . 8 375 | 376 | . 8 377 | 378 | . 8 379 | 380 | . 8 381 | 382 | . 8 383 | . 8 384 | . 8 385 | . 8 386 | . 8 387 | 388 | 389 | 8 390 | 2 8 391 | 392 | 393 | . 5 8 394 | . 5 8 395 | . 5 8 396 | . 5 8 397 | . 5 8 398 | . 5 8 399 | . 5 8 400 | . 5 8 401 | . 5 8 402 | . 5 8 403 | . 5 8 404 | . 5 8 405 | . 5 8 406 | . 5 8 407 | . 5 8 408 | . 5 8 409 | 3 5 8 410 | 3 4 1 8 411 | 3 4 1 8 412 | 3 4 1 8 413 | 3 4 1 8 414 | 3 4 1 8 415 | 3 4 1 8 416 | 3 4 1 8 417 | 3 4 1 8 418 | 3 1 8 419 | 3 1 8 420 | 3 8 421 | 422 | 423 | 8 424 | 2 8 425 | 426 | . 8 427 | . 8 428 | . 8 429 | . 8 430 | . 8 431 | . 8 432 | . 8 433 | . 8 434 | . 8 435 | . 8 436 | . 8 437 | . 8 438 | . 8 439 | . 8 440 | . 8 441 | . 8 442 | . 8 443 | . 8 444 | . 8 445 | . 8 446 | . 8 447 | . 8 448 | . 8 449 | . 8 450 | . 8 451 | . 8 452 | . 8 453 | . 8 454 | . 8 455 | . 8 456 | . 8 457 | . 8 458 | . 8 459 | 460 | 8 461 | 2 8 462 | 463 | 464 | D 8 465 | 466 | 9 8 467 | 468 | 3 8 469 | 470 | 471 | B 7 8 472 | 473 | F . A 7 F 7 8 474 | D . 8 1 . 8 C . 8 475 | 9 . 8 F . 8 A . 8 476 | A . 8 B . 8 3 . 8 477 | B . 8 3 . 8 B . 8 478 | C . 8 C . 8 479 | E . 8 B . 8 480 | C . 8 481 | D . 8 482 | 3 . 8 483 | B . 8 484 | E . 8 485 | 486 | 487 | 488 | -------------------------------------------------------------------------------- /txt/scala.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 92 8 3 | 4 | 5 | 7 8.4 . 8 6 | 7 8. 8 7 | 7 8.4 B . 8 8 | 7 8. 8 9 | 7 8.6 B . 8 10 | 7 8. 6 . B .B . B . 8 11 | 7 8. 6 . B .B . B . 8 12 | 7 8. 6. B 5 3 8 13 | 7 8. 8 14 | 7 8. 8 15 | 7 8. 5 4 . B 5 8 16 | 7 8. 5 . 5 3 5 3 8 17 | 7 8. 5 8 18 | 7 8. 5 8 19 | 7 8. 6 B . 5 B 8 20 | 7 8. 6 . 5 . 5 8 21 | 7 8. 6 . 5 . 5 8 22 | 7 8. 6 B . 6 8 23 | 7 8. 6 . 5 . 1 .6 5 . 1 .1 . 1 . 8 24 | 7 8. 1 .1 . 1 .3. 5 1 .1 . 1 .1. 8 25 | 7 8. 6 . 5 3 8 26 | 7 8. B . 5 B . 5 . 1 8 27 | -------------------------------------------------------------------------------- /txt/scala.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║  SCALA ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ 1 │ package sclin ║ 6 | ║ 2 │ ║ 7 | ║ 3 │ import ANY.* ║ 8 | ║ 4 │ ║ 9 | ║ 5 │ case class Lambda( ║ 10 | ║ 6 │ xs: LazyList[ANY] = LazyList(), ║ 11 | ║ 7 │ ys: LazyList[ANY] = LazyList(), ║ 12 | ║ 8 │ n: Int = 1 ║ 13 | ║ 9 │ ): ║ 14 | ║ 10 │ ║ 15 | ║ 11 │ def loop: Lambda = ║ 16 | ║ 12 │ if n <= 0 then this ║ 17 | ║ 13 │ else ║ 18 | ║ 14 │ xs match ║ 19 | ║ 15 │ case LazyList() => this ║ 20 | ║ 16 │ case c #:: cs => ║ 21 | ║ 17 │ val d = c match ║ 22 | ║ 18 │ case CMD(x) => ║ 23 | ║ 19 │ val m = x.groupBy(c => c).view.mapValues(_.length) ║ 24 | ║ 20 │ m.get('(').getOrElse(0) - m.get(')').getOrElse(0) ║ 25 | ║ 21 │ case _ => 0 ║ 26 | ║ 22 │ Lambda(cs, ys #::: LazyList(c), n + d).loop ║ 27 | ║ ║ 28 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 29 | -------------------------------------------------------------------------------- /txt/svelte.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 32 8 3 | 4 | 5 | 7 8. B 8 6 | 7 8. 1 52.2 8 7 | 7 8. 2 8 8 | 7 8. 2 . 2 8 9 | 7 8. 8 10 | 7 8. B 8 11 | 7 8. 1 52.2 .2 8 12 | 7 8. 1 52 8 13 | 7 8. 8 14 | 7 8. B 1 52 . 8 15 | 7 8. B 1 52 . 8 16 | 7 8. 8 17 | 7 8. B . 8 18 | 7 8. B . 8 19 | 7 8. B 8 20 | 7 8. 1 5. 8 21 | 7 8. 1 52 .2 .2 8 22 | 7 8. 1 5. 8 23 | 7 8. 1 5. 8 24 | 7 8. 1 5. 8 25 | 7 8. 8 26 | 7 8. B 1 52 . 8 27 | 7 8. B 1 52 . B. 8 28 | 7 8. B . 8 29 | 7 8. B . 8 30 | 7 8. B . 8 31 | -------------------------------------------------------------------------------- /txt/svelte.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║  SVELTE ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ 1 │
║ 10 | ║ 6 │
║ 14 | ║ 10 │
║ 15 | ║ 11 │ ║ 16 | ║ 12 │ {hbar + '·'.repeat(opts.health - hbar.length)} ║ 17 | ║ 13 │ ║ 18 | ║ 14 │
║ 19 | ║ 15 │ (clk = true)} ║ 25 | ║ 21 │ /> ║ 26 | ║ 22 │
║ 27 | ║ 23 │

{interp}

║ 28 | ║ 24 │
║ 29 | ║ 25 │
║ 30 | ║ 26 │
║ 31 | ║ ║ 32 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 33 | -------------------------------------------------------------------------------- /txt/uiua.clr: -------------------------------------------------------------------------------- 1 | 8 2 | 2 8 3 | 4 | 5 | A . BCBC3 73 BC BC373 8 6 | C . CABC. 7 8 7 | A . C3 CA D.C3 .C.3 ABA. 8 8 | A . CDA.C3. 7 8 9 | DBA.CDA . C3C 3B.AC3. 3 8 10 | -------------------------------------------------------------------------------- /txt/uiua.txt: -------------------------------------------------------------------------------- 1 | ╔══════════════════════════════════════════════════════════════════════════════════════════════════╗ 2 | ║  UIUA ║ 3 | ╟──────────────────────────────────────────────────────────────────────────────────────────────────╢ 4 | ║ ║ 5 | ║ U ← /=⊞<0.2_0.7 /+×⟜ⁿ1_2 ║ 6 | ║ I ← >⌵/ℂ: # Circle ║ 7 | ║ u ← +0.1↧¤ ⊃(I0.95|⊂:0.5⇌°√) ║ 8 | ║ A ← ×⊃U(I1) # Alpha ║ 9 | ║ ⍜°⍉(⊂⊃u A) -1÷÷2⟜(⇡↯2) 200 ║ 10 | ║ ║ 11 | ╚══════════════════════════════════════════════════════════════════════════════════════════════════╝ 12 | --------------------------------------------------------------------------------