├── img └── write-ascii-example-pic.png ├── README.md ├── LICENSE ├── WriteAscii.psd1 ├── WriteAscii.psm1 └── letters.xml /img/write-ascii-example-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliteLoser/WriteAscii/HEAD/img/write-ascii-example-pic.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Write-Ascii 2 | 3 | Use Svendsen Tech's WriteAscii module to produce ASCII art letters from strings, in PowerShell 4 | 5 | Online blog documentation: https://www.powershelladmin.com/wiki/Ascii_art_characters_powershell_script 6 | 7 | PowerShell Gallery link: https://www.powershellgallery.com/packages/WriteAscii/ 8 | 9 | Example of module disovery in the PowerShell Gallery, installation, and use in a screenshot. 10 | 11 | ![alt_tag](/img/write-ascii-example-pic.png) 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2012-present. Joakim Borger Svendsen. Svendsen Tech. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /WriteAscii.psd1: -------------------------------------------------------------------------------- 1 | # 2 | # Module manifest for module 'PSGet_Write-Ascii' 3 | # 4 | # Generated by: Joakim Svendsen 5 | # 6 | # Generated on: 7/26/2018 7 | # 8 | 9 | @{ 10 | 11 | # Script module or binary module file associated with this manifest. 12 | # RootModule = '' 13 | # for PSv2-compatibility at no other cost.. (gallery requires PSv3+, but this lets 14 | # me use the same version of the manifest also for v2) 15 | ModuleToProcess = 'WriteAscii.psm1' 16 | 17 | # Version number of this module. 18 | ModuleVersion = '1.3.0' 19 | 20 | # Supported PSEditions 21 | # CompatiblePSEditions = @() 22 | 23 | # ID used to uniquely identify this module 24 | GUID = 'bf3e3bb5-97de-416a-97d7-edf403fa7976' 25 | 26 | # Author of this module 27 | Author = 'Joakim Borger Svendsen' 28 | 29 | # Company or vendor of this module 30 | CompanyName = 'Svendsen Tech' 31 | 32 | # Copyright statement for this module 33 | Copyright = 'Copyright (c) 2012-present, Joakim Borger Svendsen. Svendsen Tech. All rights reserved.' 34 | 35 | # Description of the functionality provided by this module 36 | Description = 'Use Svendsen Tech''s Write-Ascii function to produce (optionally colored) ASCII art text letters from strings, in PowerShell. See Get-Help Write-Ascii for more information. GitHub link here: https://github.com/EliteLoser/WriteAscii - online blog documentation here: https://www.powershelladmin.com/wiki/Ascii_art_characters_powershell_script' 37 | 38 | # Minimum version of the Windows PowerShell engine required by this module 39 | PowerShellVersion = '2.0' 40 | 41 | # Name of the Windows PowerShell host required by this module 42 | # PowerShellHostName = '' 43 | 44 | # Minimum version of the Windows PowerShell host required by this module 45 | # PowerShellHostVersion = '' 46 | 47 | # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. 48 | # DotNetFrameworkVersion = '' 49 | 50 | # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. 51 | # CLRVersion = '' 52 | 53 | # Processor architecture (None, X86, Amd64) required by this module 54 | # ProcessorArchitecture = '' 55 | 56 | # Modules that must be imported into the global environment prior to importing this module 57 | # RequiredModules = @() 58 | 59 | # Assemblies that must be loaded prior to importing this module 60 | # RequiredAssemblies = @() 61 | 62 | # Script files (.ps1) that are run in the caller's environment prior to importing this module. 63 | # ScriptsToProcess = @() 64 | 65 | # Type files (.ps1xml) to be loaded when importing this module 66 | # TypesToProcess = @() 67 | 68 | # Format files (.ps1xml) to be loaded when importing this module 69 | # FormatsToProcess = @() 70 | 71 | # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess 72 | # NestedModules = @() 73 | 74 | # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. 75 | FunctionsToExport = 'Write-Ascii' 76 | 77 | # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. 78 | CmdletsToExport = @() 79 | 80 | # Variables to export from this module 81 | # VariablesToExport = @() 82 | 83 | # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. 84 | AliasesToExport = @() 85 | 86 | # DSC resources to export from this module 87 | # DscResourcesToExport = @() 88 | 89 | # List of all modules packaged with this module 90 | # ModuleList = @() 91 | 92 | # List of all files packaged with this module 93 | FileList = 'WriteAscii.psm1', 'WriteAscii.psd1', 'letters.xml' 94 | 95 | # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. 96 | PrivateData = @{ 97 | 98 | PSData = @{ 99 | 100 | # Tags applied to this module. These help with module discovery in online galleries. 101 | Tags = @('ASCII', 'Write-Ascii', 'Art') 102 | 103 | # A URL to the license for this module. 104 | LicenseUri = 'https://github.com/EliteLoser/WriteAscii/blob/master/LICENSE' 105 | 106 | # A URL to the main website for this project. 107 | ProjectUri = 'https://github.com/EliteLoser/WriteAscii' 108 | 109 | # A URL to an icon representing this module. 110 | # IconUri = '' 111 | 112 | # ReleaseNotes of this module 113 | ReleaseNotes = ' 114 | * Fix cross-platform support.' 115 | 116 | # External dependent modules of this module 117 | # ExternalModuleDependencies = '' 118 | 119 | } # End of PSData hashtable 120 | 121 | } # End of PrivateData hashtable 122 | 123 | # HelpInfo URI of this module 124 | HelpInfoURI = 'https://www.powershelladmin.com/wiki/Ascii_art_characters_powershell_script' 125 | 126 | # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. 127 | # DefaultCommandPrefix = '' 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /WriteAscii.psm1: -------------------------------------------------------------------------------- 1 | <# 2 | .SYNOPSIS 3 | Svendsen Tech's PowerShell ASCII art module creates ASCII art characters 4 | from a subset of common letters, numbers and punctuation characters. 5 | You can add new characters by editing the XML (for developers). 6 | 7 | MIT license. 8 | 9 | Copyright (c) 2012-present, Joakim Borger Svendsen, Svendsen Tech. 10 | All rights reserved. 11 | 12 | .DESCRIPTION 13 | This script reads characters from an XML file that's expected to have the name 14 | "letters.xml", be encoded in UTF-8 and to be in the module's working directory. 15 | 16 | It was written to be used in conjunction with a modified version of 17 | PowerBot (http://poshcode.org/2510), a simple IRC bot framework written 18 | using SmartIrc4Net; that's why it can prepend an apostrophe - because somewhere 19 | along the way the leading spaces get lost before it hits the IRC channel. 20 | 21 | Currently the XML only contains lowercase letters, mostly because PowerShell/ 22 | Windows is case-insensitive by default, which isn't an advantage here. 23 | 24 | Example: 25 | PS C:\> Import-Module WriteAscii 26 | PS C:\> Write-Ascii "ASCII!" 27 | _ _ _ 28 | __ _ ___ ___ (_)(_)| | 29 | / _` |/ __| / __|| || || | 30 | | (_| |\__ \| (__ | || ||_| 31 | \__,_||___/ \___||_||_|(_) 32 | PS C:\> 33 | 34 | .PARAMETER InputText 35 | String(s) to convert to ASCII. 36 | .PARAMETER PrependChar 37 | Optional. Makes the script prepend an apostrophe. 38 | .PARAMETER Compression 39 | Optional. Compress to five lines when possible, even when it causes incorrect 40 | alignment of the letters g, y, p and q (and "¤"). 41 | .PARAMETER ForegroundColor 42 | Optional. Console only. Changes text foreground color. 43 | .PARAMETER BackgroundColor 44 | Optional. Console only. Changes text background color. 45 | #> 46 | 47 | function Write-Ascii { 48 | # Wrapping the script in a function to make it a module 49 | 50 | [CmdletBinding()] 51 | param( 52 | [Parameter( 53 | ValueFromPipeline = $True, 54 | Mandatory = $True)] 55 | [Alias('InputText')] 56 | [String[]] $InputObject, 57 | [Switch] $PrependChar, 58 | [Alias('Compression')] [Switch] $Compress, 59 | [ValidateSet("Black", "Blue", "Cyan", "DarkBlue", "DarkCyan", "DarkGray", 60 | "DarkGreen", "DarkMagenta", "DarkRed", "DarkYellow", "Default", "Gray", "Green", 61 | "Magenta", "Red", "Rainbow", "White", "Yellow")] 62 | [String] $ForegroundColor = 'Default', 63 | [ValidateSet("Black", "Blue", "Cyan", "DarkBlue", "DarkCyan", "DarkGray", 64 | "DarkGreen", "DarkMagenta", "DarkRed", "DarkYellow", "Default", "Gray", "Green", 65 | "Magenta", "Red", "Rainbow", "White", "Yellow")] 66 | [String] $BackgroundColor = 'Default' 67 | #[int] $MaxChars = '25' 68 | ) 69 | 70 | begin { 71 | 72 | Set-StrictMode -Version Latest 73 | $ErrorActionPreference = 'Stop' 74 | 75 | # Algorithm from hell... This was painful. I hope there's a better way. 76 | function Get-Ascii { 77 | 78 | param([String] $Text) 79 | 80 | $LetterArray = [Char[]] $Text.ToLower() 81 | 82 | #Write-Host -fore green $LetterArray 83 | 84 | # Find the letter with the most lines. 85 | $MaxLines = 0 86 | $LetterArray | ForEach-Object { 87 | if ($Letters.([String] $_).Lines -gt $MaxLines ) { 88 | $MaxLines = $Letters.([String] $_).Lines 89 | } 90 | } 91 | 92 | # Now this sure was a simple way of making sure all letter align tidily without changing a lot of code! 93 | if (-not $Compress) { $MaxLines = 6 } 94 | 95 | $LetterWidthArray = $LetterArray | ForEach-Object { 96 | $Letter = [String] $_ 97 | $Letters.$Letter.Width 98 | } 99 | $LetterLinesArray = $LetterArray | ForEach-Object { 100 | $Letter = [String] $_ 101 | $Letters.$Letter.Lines 102 | } 103 | 104 | #$LetterLinesArray 105 | 106 | $Lines = @{ 107 | '1' = '' 108 | '2' = '' 109 | '3' = '' 110 | '4' = '' 111 | '5' = '' 112 | '6' = '' 113 | } 114 | 115 | #$LineLengths = @(0, 0, 0, 0, 0, 0) 116 | 117 | # Debug 118 | #Write-Host "MaxLines: $Maxlines" 119 | 120 | $LetterPos = 0 121 | foreach ($Letter in $LetterArray) { 122 | 123 | # We need to work with strings for indexing the hash by letter 124 | $Letter = [String] $Letter 125 | 126 | # Each ASCII letter can be from 4 to 6 lines. 127 | 128 | # If the letter has the maximum of 6 lines, populate hash with all lines. 129 | if ($LetterLinesArray[$LetterPos] -eq 6) { 130 | 131 | #Write-Host "Six letter letter" 132 | 133 | foreach ($Num in 1..6) { 134 | 135 | $LineFragment = [String](($Letters.$Letter.ASCII).Split("`n"))[$Num-1] 136 | 137 | if ($LineFragment.Length -lt $Letters.$Letter.Width) { 138 | $LineFragment += ' ' * ($Letters.$Letter.Width - $LineFragment.Length) 139 | } 140 | 141 | $StringNum = [String] $Num 142 | $Lines.$StringNum += $LineFragment 143 | 144 | } 145 | 146 | } 147 | 148 | # Add padding for line 1 for letters with 5 lines and populate lines 2-6. 149 | ## Changed to top-adjust 5-line letters if there are 6 total. 150 | ## Added XML properties for letter alignment. Most are "default", which is top-aligned. 151 | ## Also added script logic to handle it (2012-12-29): bottom 152 | elseif ($LetterLinesArray[$LetterPos] -eq 5) { 153 | 154 | if ($MaxLines -lt 6 -or $Letters.$Letter.fixation -eq 'bottom') { 155 | 156 | $Padding = ' ' * $LetterWidthArray[$LetterPos] 157 | $Lines.'1' += $Padding 158 | 159 | foreach ($Num in 2..6) { 160 | 161 | $LineFragment = [String](($Letters.$Letter.ASCII).Split("`n"))[$Num-2] 162 | 163 | if ($LineFragment.Length -lt $Letters.$Letter.Width) { 164 | $LineFragment += ' ' * ($Letters.$Letter.Width - $LineFragment.Length) 165 | } 166 | 167 | $StringNum = [String] $Num 168 | $Lines.$StringNum += $LineFragment 169 | 170 | } 171 | 172 | } 173 | 174 | else { 175 | 176 | $Padding = ' ' * $LetterWidthArray[$LetterPos] 177 | $Lines.'6' += $Padding 178 | 179 | foreach ($Num in 1..5) { 180 | 181 | $StringNum = [String] $Num 182 | 183 | $LineFragment = [String](($Letters.$Letter.ASCII).Split("`n"))[$Num-1] 184 | 185 | if ($LineFragment.Length -lt $Letters.$Letter.Width) { 186 | $LineFragment += ' ' * ($Letters.$Letter.Width - $LineFragment.Length) 187 | } 188 | 189 | $Lines.$StringNum += $LineFragment 190 | 191 | } 192 | 193 | } 194 | 195 | } 196 | 197 | # Here we deal with letters with four lines. 198 | # Dynamic algorithm that places four-line letters on the bottom line if there are 199 | # 4 or 5 lines only in the letter with the most lines. 200 | else { 201 | 202 | # Default to putting the 4-liners at line 3-6 203 | $StartRange, $EndRange, $IndexSubtract = 3, 6, 3 204 | $Padding = ' ' * $LetterWidthArray[$LetterPos] 205 | 206 | # If there are 4 or 5 lines... 207 | if ($MaxLines -lt 6) { 208 | 209 | $Lines.'2' += $Padding 210 | 211 | } 212 | 213 | # There are 6 lines maximum, put 4-line letters in the middle. 214 | else { 215 | 216 | $Lines.'1' += $Padding 217 | $Lines.'6' += $Padding 218 | $StartRange, $EndRange, $IndexSubtract = 2, 5, 2 219 | 220 | } 221 | 222 | # There will always be at least four lines. Populate lines 2-5 or 3-6 in the hash. 223 | foreach ($Num in $StartRange..$EndRange) { 224 | 225 | $StringNum = [String] $Num 226 | 227 | $LineFragment = [String](($Letters.$Letter.ASCII).Split("`n"))[$Num-$IndexSubtract] 228 | 229 | if ($LineFragment.Length -lt $Letters.$Letter.Width) { 230 | $LineFragment += ' ' * ($Letters.$Letter.Width - $LineFragment.Length) 231 | } 232 | 233 | $Lines.$StringNum += $LineFragment 234 | 235 | } 236 | 237 | } 238 | 239 | $LetterPos++ 240 | 241 | } # end of LetterArray foreach 242 | 243 | # Return stuff 244 | $Lines.GetEnumerator() | 245 | Sort-Object -Property Name | 246 | Select -ExpandProperty Value | 247 | Where-Object { 248 | $_ -match '\S' 249 | } | ForEach-Object { 250 | if ($PrependChar) { 251 | "'" + $_ 252 | } 253 | else { 254 | $_ 255 | } 256 | } 257 | 258 | } 259 | 260 | # Populate the $Letters hashtable with character data from the XML. 261 | Function Get-LetterXML { 262 | 263 | $LetterFile = Join-Path $PSScriptRoot 'letters.xml' 264 | $Xml = [xml] (Get-Content $LetterFile) 265 | 266 | $Xml.Chars.Char | ForEach-Object { 267 | 268 | $Letters.($_.Name) = New-Object PSObject -Property @{ 269 | 270 | 'Fixation' = $_.fixation 271 | 'Lines' = $_.lines 272 | 'ASCII' = $_.data 273 | 'Width' = $_.width 274 | 275 | } 276 | 277 | } 278 | 279 | } 280 | 281 | function Write-RainbowString { 282 | 283 | param([String] $Line, 284 | [String] $ForegroundColor = '', 285 | [String] $BackgroundColor = '') 286 | 287 | $Colors = @('Black', 'DarkBlue', 'DarkGreen', 'DarkCyan', 'DarkRed', 'DarkMagenta', 'DarkYellow', 288 | 'Gray', 'DarkGray', 'Blue', 'Green', 'Cyan', 'Red', 'Magenta', 'Yellow', 'White') 289 | 290 | 291 | # $Colors[(Get-Random -Min 0 -Max 16)] 292 | 293 | [Char[]] $Line | %{ 294 | 295 | if ($ForegroundColor -and $ForegroundColor -ieq 'rainbow') { 296 | 297 | if ($BackgroundColor -and $BackgroundColor -ieq 'rainbow') { 298 | Write-Host -ForegroundColor $Colors[( 299 | Get-Random -Min 0 -Max 16 300 | )] -BackgroundColor $Colors[( 301 | Get-Random -Min 0 -Max 16 302 | )] -NoNewline $_ 303 | } 304 | elseif ($BackgroundColor) { 305 | Write-Host -ForegroundColor $Colors[( 306 | Get-Random -Min 0 -Max 16 307 | )] -BackgroundColor $BackgroundColor ` 308 | -NoNewline $_ 309 | } 310 | else { 311 | Write-Host -ForegroundColor $Colors[( 312 | Get-Random -Min 0 -Max 16 313 | )] -NoNewline $_ 314 | } 315 | 316 | } 317 | # One of them has to be a rainbow, so we know the background is a rainbow here... 318 | else { 319 | 320 | if ($ForegroundColor) { 321 | Write-Host -ForegroundColor $ForegroundColor -BackgroundColor $Colors[( 322 | Get-Random -Min 0 -Max 16 323 | )] -NoNewline $_ 324 | } 325 | else { 326 | Write-Host -BackgroundColor $Colors[(Get-Random -Min 0 -Max 16)] -NoNewline $_ 327 | } 328 | } 329 | 330 | } 331 | 332 | Write-Host '' 333 | 334 | } 335 | 336 | # Get ASCII art letters/characters and data from XML. Make it persistent for the module. 337 | if (-not (Get-Variable -EA SilentlyContinue -Scope Script -Name Letters)) { 338 | $script:Letters = @{} 339 | Get-LetterXML 340 | } 341 | 342 | # Turn the [string[]] into a [String] the only way I could figure out how... wtf 343 | #$Text = '' 344 | #$InputObject | ForEach-Object { $Text += "$_ " } 345 | 346 | # Limit to 30 characters 347 | #$MaxChars = 30 348 | #if ($Text.Length -gt $MaxChars) { "Too long text. There's a maximum of $MaxChars characters."; return } 349 | 350 | # Replace spaces with underscores (that's what's used for spaces in the XML). 351 | #$Text = $Text -replace ' ', '_' 352 | 353 | # Define accepted characters (which are found in XML). 354 | #$AcceptedChars = '[^a-z0-9 _,!?./;:<>()¤{}\[\]\|\^=\$\-''+`\\"æøåâàáéèêóòôü]' # Some chars only works when sent as UTF-8 on IRC 355 | $LetterArray = [string[]]($Letters.GetEnumerator() | Sort-Object -Property Name | Select-Object -ExpandProperty Name) 356 | $AcceptedChars = [regex] ( '(?i)[^' + ([regex]::Escape(($LetterArray -join '')) -replace '-', '\-' -replace '\]', '\]') + ' ]' ) 357 | # Debug 358 | #Write-Host -fore cyan $AcceptedChars.ToString() 359 | } 360 | 361 | process { 362 | if ($InputObject -match $AcceptedChars) { 363 | "Unsupported character, using these accepted characters: " + ($LetterArray -replace '^template$' -join ', ') + "." 364 | return 365 | } 366 | 367 | # Filthy workaround (now worked around in the foreach creating the string). 368 | #if ($Text.Length -eq 1) { $Text += '_' } 369 | 370 | $Lines = @() 371 | 372 | foreach ($Text in $InputObject) { 373 | 374 | $ASCII = Get-Ascii ($Text -replace ' ', '_') 375 | 376 | if ($ForegroundColor -ne 'Default' -and $BackgroundColor -ne 'Default') { 377 | if ($ForegroundColor -ieq 'rainbow' -or $BackGroundColor -ieq 'rainbow') { 378 | $ASCII | ForEach-Object { 379 | Write-RainbowString -ForegroundColor $ForegroundColor -BackgroundColor $BackgroundColor -Line $_ 380 | } 381 | } 382 | else { 383 | Write-Host -ForegroundColor $ForegroundColor -BackgroundColor $BackgroundColor ($ASCII -join "`n") 384 | } 385 | } 386 | elseif ($ForegroundColor -ne 'Default') { 387 | if ($ForegroundColor -ieq 'rainbow') { 388 | $ASCII | ForEach-Object { 389 | Write-RainbowString -ForegroundColor $ForegroundColor -Line $_ 390 | } 391 | } 392 | else { 393 | Write-Host -ForegroundColor $ForegroundColor ($ASCII -join "`n") 394 | } 395 | } 396 | elseif ($BackgroundColor -ne 'Default') { 397 | if ($BackgroundColor -ieq 'rainbow') { 398 | $ASCII | ForEach-Object { 399 | Write-RainbowString -BackgroundColor $BackgroundColor -Line $_ 400 | } 401 | } 402 | else { 403 | Write-Host -BackgroundColor $BackgroundColor ($ASCII -join "`n") 404 | } 405 | } 406 | else { $ASCII -replace '\s+$' } 407 | 408 | } # end of foreach 409 | 410 | } # end of process block 411 | 412 | } # end of function 413 | -------------------------------------------------------------------------------- /letters.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | a 4 | default 5 | 4 6 | 7 7 | __ _ 8 | / _` | 9 | | (_| | 10 | \__,_| 11 | 12 | 13 | 14 | ä 15 | default 16 | 5 17 | 7 18 | _ _ 19 | (_)_(_) 20 | / _` | 21 | | (_| | 22 | \__,_| 23 | 24 | 25 | 26 | à 27 | default 28 | 5 29 | 7 30 | __ 31 | \_\_ 32 | / _` | 33 | | (_| | 34 | \__,_| 35 | 36 | 37 | 38 | á 39 | default 40 | 5 41 | 7 42 | __ 43 | /_/_ 44 | / _` | 45 | | (_| | 46 | \__,_| 47 | 48 | 49 | 50 | â 51 | default 52 | 5 53 | 7 54 | //\ 55 | |/_\| 56 | / _` | 57 | | (_| | 58 | \__,_| 59 | 60 | 61 | 62 | b 63 | default 64 | 5 65 | 7 66 | _ 67 | | |__ 68 | | '_ \ 69 | | |_) | 70 | |_.__/ 71 | 72 | 73 | 74 | c 75 | default 76 | 4 77 | 6 78 | ___ 79 | / __| 80 | | (__ 81 | \___| 82 | 83 | 84 | 85 | d 86 | default 87 | 5 88 | 7 89 | _ 90 | __| | 91 | / _` | 92 | | (_| | 93 | \__,_| 94 | 95 | 96 | 97 | e 98 | default 99 | 4 100 | 6 101 | ___ 102 | / _ \ 103 | | __/ 104 | \___| 105 | 106 | 107 | 108 | é 109 | default 110 | 5 111 | 6 112 | __ 113 | /_/ 114 | / _ \ 115 | | __/ 116 | \___| 117 | 118 | 119 | 120 | è 121 | default 122 | 5 123 | 6 124 | __ 125 | \_\ 126 | / _ \ 127 | | __/ 128 | \___| 129 | 130 | 131 | 132 | ê 133 | default 134 | 5 135 | 6 136 | //\ 137 | |/_\| 138 | / _ \ 139 | | __/ 140 | \___| 141 | 142 | 143 | 144 | f 145 | default 146 | 5 147 | 5 148 | __ 149 | / _| 150 | | |_ 151 | | _| 152 | |_| 153 | 154 | 155 | 156 | g 157 | bottom 158 | 5 159 | 7 160 | __ _ 161 | / _` | 162 | | (_| | 163 | \__, | 164 | |___/ 165 | 166 | 167 | h 168 | default 169 | 5 170 | 7 171 | _ 172 | | |__ 173 | | '_ \ 174 | | | | | 175 | |_| |_| 176 | 177 | 178 | i 179 | default 180 | 5 181 | 3 182 | _ 183 | (_) 184 | | | 185 | | | 186 | |_| 187 | 188 | 189 | j 190 | default 191 | 6 192 | 5 193 | _ 194 | (_) 195 | | | 196 | | | 197 | _/ | 198 | |__/ 199 | 200 | 201 | k 202 | default 203 | 5 204 | 6 205 | _ 206 | | | __ 207 | | |/ / 208 | | < 209 | |_|\_\ 210 | 211 | 212 | l 213 | default 214 | 5 215 | 3 216 | _ 217 | | | 218 | | | 219 | | | 220 | |_| 221 | 222 | 223 | m 224 | default 225 | 4 226 | 11 227 | _ __ ___ 228 | | '_ ` _ \ 229 | | | | | | | 230 | |_| |_| |_| 231 | 232 | 233 | 234 | n 235 | default 236 | 4 237 | 7 238 | _ __ 239 | | '_ \ 240 | | | | | 241 | |_| |_| 242 | 243 | 244 | 245 | o 246 | default 247 | 4 248 | 7 249 | ___ 250 | / _ \ 251 | | (_) | 252 | \___/ 253 | 254 | 255 | ö 256 | default 257 | 5 258 | 7 259 | _ _ 260 | (_)_(_) 261 | / _ \ 262 | | (_) | 263 | \___/ 264 | 265 | 266 | 267 | 268 | ò 269 | default 270 | 5 271 | 7 272 | __ 273 | \_\ 274 | / _ \ 275 | | (_) | 276 | \___/ 277 | 278 | 279 | 280 | ó 281 | default 282 | 5 283 | 7 284 | __ 285 | /_/ 286 | / _ \ 287 | | (_) | 288 | \___/ 289 | 290 | 291 | 292 | ô 293 | default 294 | 5 295 | 7 296 | //\ 297 | |/_\| 298 | / _ \ 299 | | (_) | 300 | \___/ 301 | 302 | 303 | 304 | p 305 | bottom 306 | 5 307 | 7 308 | _ __ 309 | | '_ \ 310 | | |_) | 311 | | .__/ 312 | |_| 313 | 314 | 315 | q 316 | bottom 317 | 5 318 | 7 319 | __ _ 320 | / _` | 321 | | (_| | 322 | \__, | 323 | |_| 324 | 325 | 326 | 327 | r 328 | default 329 | 4 330 | 6 331 | _ __ 332 | | '__| 333 | | | 334 | |_| 335 | 336 | 337 | 338 | s 339 | default 340 | 4 341 | 5 342 | ___ 343 | / __| 344 | \__ \ 345 | |___/ 346 | 347 | 348 | t 349 | default 350 | 5 351 | 5 352 | _ 353 | | |_ 354 | | __| 355 | | |_ 356 | \__| 357 | 358 | 359 | 360 | u 361 | default 362 | 4 363 | 7 364 | _ _ 365 | | | | | 366 | | |_| | 367 | \__,_| 368 | 369 | 370 | 371 | ü 372 | default 373 | 5 374 | 7 375 | _ _ 376 | (_) (_) 377 | | | | | 378 | | |_| | 379 | \__,_| 380 | 381 | 382 | 383 | 384 | v 385 | default 386 | 4 387 | 7 388 | __ __ 389 | \ \ / / 390 | \ V / 391 | \_/ 392 | 393 | 394 | 395 | 396 | w 397 | default 398 | 4 399 | 10 400 | __ __ 401 | \ \ /\ / / 402 | \ V V / 403 | \_/\_/ 404 | 405 | 406 | 407 | 408 | x 409 | default 410 | 4 411 | 6 412 | __ __ 413 | \ \/ / 414 | > < 415 | /_/\_\ 416 | 417 | 418 | 419 | 420 | y 421 | 5 422 | bottom 423 | 7 424 | _ _ 425 | | | | | 426 | | |_| | 427 | \__, | 428 | |___/ 429 | 430 | 431 | 432 | z 433 | default 434 | 4 435 | 5 436 | ____ 437 | |_ / 438 | / / 439 | /___| 440 | 441 | 442 | 443 | æ 444 | default 445 | 4 446 | 10 447 | __ ____ 448 | / _` _ \ 449 | | (_| __/ 450 | \__,____| 451 | 452 | 453 | 454 | 455 | ø 456 | default 457 | 4 458 | 8 459 | ____ 460 | / _//\ 461 | | (//) | 462 | \//__/ 463 | 464 | 465 | 466 | å 467 | default 468 | 5 469 | 7 470 | __ 471 | (()) 472 | / _ '| 473 | | (_| | 474 | \__,_| 475 | 476 | 477 | 478 | _ 479 | default 480 | 4 481 | 3 482 |     483 |     484 |     485 |     486 | 487 | 488 | 489 | ! 490 | default 491 | 5 492 | 3 493 | _ 494 | | | 495 | | | 496 | |_| 497 | (_) 498 | 499 | 500 | 501 | ? 502 | default 503 | 5 504 | 5 505 | ___ 506 | |__ \ 507 | / / 508 | |_| 509 | (_) 510 | 511 | 512 | 513 | , 514 | default 515 | 4 516 | 3 517 | 518 | _ 519 | ( ) 520 | |/ 521 | 522 | 523 | 524 | . 525 | default 526 | 4 527 | 3 528 | 529 | 530 | _ 531 | (_) 532 | 533 | 534 | 535 | - 536 | default 537 | 4 538 | 7 539 | 540 | _____ 541 | |_____| 542 | 543 | 544 | 545 | 546 | 1 547 | default 548 | 5 549 | 3 550 | _ 551 | / | 552 | | | 553 | | | 554 | |_| 555 | 556 | 557 | 558 | 2 559 | default 560 | 5 561 | 7 562 | ____ 563 | |___ \ 564 | __) | 565 | / __/ 566 | |_____| 567 | 568 | 569 | 570 | 3 571 | default 572 | 5 573 | 7 574 | _____ 575 | |___ / 576 | |_ \ 577 | ___) | 578 | |____/ 579 | 580 | 581 | 582 | 4 583 | default 584 | 5 585 | 8 586 | _ _ 587 | | || | 588 | | || |_ 589 | |__ _| 590 | |_| 591 | 592 | 593 | 594 | 5 595 | default 596 | 5 597 | 7 598 | ____ 599 | | ___| 600 | |___ \ 601 | ___) | 602 | |____/ 603 | 604 | 605 | 606 | 6 607 | default 608 | 5 609 | 7 610 | __ 611 | / /_ 612 | | '_ \ 613 | | (_) | 614 | \___/ 615 | 616 | 617 | 618 | 7 619 | default 620 | 5 621 | 7 622 | _____ 623 | |___ | 624 | / / 625 | / / 626 | /_/ 627 | 628 | 629 | 630 | 8 631 | default 632 | 5 633 | 7 634 | ___ 635 | ( _ ) 636 | / _ \ 637 | | (_) | 638 | \___/ 639 | 640 | 641 | 642 | 9 643 | default 644 | 5 645 | 7 646 | ___ 647 | / _ \ 648 | | (_) | 649 | \__, | 650 | /_/ 651 | 652 | 653 | 654 | 0 655 | default 656 | 5 657 | 7 658 | ___ 659 | / _ \ 660 | | | | | 661 | | |_| | 662 | \___/ 663 | 664 | 665 | 666 | : 667 | default 668 | 4 669 | 3 670 | _ 671 | (_) 672 | _ 673 | (_) 674 | 675 | 676 | 677 | ; 678 | default 679 | 5 680 | 3 681 | _ 682 | (_) 683 | _ 684 | ( ) 685 | |/ 686 | 687 | 688 | 689 | ( 690 | default 691 | 6 692 | 5 693 | __ 694 | / / 695 | | | 696 | | | 697 | | | 698 | \_\ 699 | 700 | 701 | 702 | ) 703 | default 704 | 6 705 | 5 706 | __ 707 | \ \ 708 | | | 709 | | | 710 | | | 711 | /_/ 712 | 713 | 714 | 715 | < 716 | default 717 | 5 718 | 5 719 | __ 720 | / / 721 | / / 722 | \ \ 723 | \_\ 724 | 725 | 726 | 727 | > 728 | default 729 | 5 730 | 5 731 | __ 732 | \ \ 733 | \ \ 734 | / / 735 | /_/ 736 | 737 | 738 | 739 | [ 740 | default 741 | 6 742 | 5 743 | __ 744 | | _| 745 | | | 746 | | | 747 | | | 748 | |__| 749 | 750 | 751 | 752 | ] 753 | default 754 | 6 755 | 5 756 | __ 757 | |_ | 758 | | | 759 | | | 760 | | | 761 | |__| 762 | 763 | 764 | 765 | { 766 | default 767 | 6 768 | 6 769 | __ 770 | / / 771 | | | 772 | < < 773 | | | 774 | \_\ 775 | 776 | 777 | 778 | } 779 | default 780 | 6 781 | 6 782 | __ 783 | \ \ 784 | | | 785 | > > 786 | | | 787 | /_/ 788 | 789 | 790 | 791 | / 792 | default 793 | 5 794 | 7 795 | __ 796 | / / 797 | / / 798 | / / 799 | /_/ 800 | 801 | 802 | 803 | \ 804 | default 805 | 5 806 | 7 807 | __ 808 | \ \ 809 | \ \ 810 | \ \ 811 | \_\ 812 | 813 | 814 | 815 | + 816 | default 817 | 4 818 | 7 819 | _ 820 | _| |_ 821 | |_ _| 822 | |_| 823 | 824 | 825 | 826 | | 827 | default 828 | 6 829 | 3 830 | _ 831 | | | 832 | | | 833 | | | 834 | | | 835 | |_| 836 | 837 | 838 | 839 | ` 840 | default 841 | 5 842 | 3 843 | _ 844 | ( ) 845 | \| 846 | 847 | 848 | 849 | 850 | 851 | ' 852 | default 853 | 5 854 | 3 855 | _ 856 | ( ) 857 | |/ 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | " 866 | default 867 | 5 868 | 5 869 | _ _ 870 | ( | ) 871 | V V 872 | 873 | 874 | 875 | 876 | 877 | ¤ 878 | 5 879 | bottom 880 | 7 881 | /\___/\ 882 | \ _ / 883 | | (_) | 884 | / ___ \ 885 | \/ \/ 886 | 887 | 888 | 889 | ' 890 | default 891 | 5 892 | 3 893 | _ 894 | ( ) 895 | |/ 896 | 897 | 898 | 899 | 900 | 901 | * 902 | default 903 | 4 904 | 6 905 | __/\__ 906 | \ / 907 | /_ _\ 908 | \/ 909 | 910 | 911 | 912 | 913 | ^ 914 | default 915 | 4 916 | 4 917 | /\ 918 | |/\| 919 | 920 | 921 | 922 | 923 | 924 | 925 | $ 926 | default 927 | 6 928 | 5 929 | _ 930 | | | 931 | / __) 932 | \__ \ 933 | ( / 934 | |_| 935 | 936 | 937 | 938 | = 939 | default 940 | 4 941 | 7 942 | _____ 943 | |_____| 944 | |_____| 945 | 946 | 947 | 948 | 949 | £ 950 | default 951 | 5 952 | 8 953 | ___ 954 | / ,_\ 955 | _| |_ 956 | | |___ 957 | (_,____| 958 | 959 | 960 | 961 | @ 962 | default 963 | 6 964 | 9 965 | ____ 966 | / __ \ 967 | / / _` | 968 | | | (_| | 969 | \ \__,_| 970 | \____/ 971 | 972 | 973 | 974 | # 975 | default 976 | 5 977 | 10 978 | _ _ 979 | _| || |_ 980 | |_ .. _| 981 | |_ _| 982 | |_||_| 983 | 984 | 985 | 986 | template 987 | default 988 | 5 989 | 6 990 | 991 | 992 | 993 | 994 | 995 | --------------------------------------------------------------------------------