github.com/mavryk-network/mvgo@v1.19.9/base58/alphabet.go (about)

     1  // Copyright (c) 2015 The btcsuite developers
     2  // Use of this source code is governed by an ISC
     3  // license that can be found in the LICENSE file.
     4  
     5  package base58
     6  
     7  const (
     8  	// alphabet is the modified base58 alphabet used by Bitcoin.
     9  	alphabet = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
    10  
    11  	alphabetIdx0 = '1'
    12  )
    13  
    14  var b58 = [256]byte{
    15  	255, 255, 255, 255, 255, 255, 255, 255,
    16  	255, 255, 255, 255, 255, 255, 255, 255,
    17  	255, 255, 255, 255, 255, 255, 255, 255,
    18  	255, 255, 255, 255, 255, 255, 255, 255,
    19  	255, 255, 255, 255, 255, 255, 255, 255,
    20  	255, 255, 255, 255, 255, 255, 255, 255,
    21  	255, 0, 1, 2, 3, 4, 5, 6,
    22  	7, 8, 255, 255, 255, 255, 255, 255,
    23  	255, 9, 10, 11, 12, 13, 14, 15,
    24  	16, 255, 17, 18, 19, 20, 21, 255,
    25  	22, 23, 24, 25, 26, 27, 28, 29,
    26  	30, 31, 32, 255, 255, 255, 255, 255,
    27  	255, 33, 34, 35, 36, 37, 38, 39,
    28  	40, 41, 42, 43, 255, 44, 45, 46,
    29  	47, 48, 49, 50, 51, 52, 53, 54,
    30  	55, 56, 57, 255, 255, 255, 255, 255,
    31  	255, 255, 255, 255, 255, 255, 255, 255,
    32  	255, 255, 255, 255, 255, 255, 255, 255,
    33  	255, 255, 255, 255, 255, 255, 255, 255,
    34  	255, 255, 255, 255, 255, 255, 255, 255,
    35  	255, 255, 255, 255, 255, 255, 255, 255,
    36  	255, 255, 255, 255, 255, 255, 255, 255,
    37  	255, 255, 255, 255, 255, 255, 255, 255,
    38  	255, 255, 255, 255, 255, 255, 255, 255,
    39  	255, 255, 255, 255, 255, 255, 255, 255,
    40  	255, 255, 255, 255, 255, 255, 255, 255,
    41  	255, 255, 255, 255, 255, 255, 255, 255,
    42  	255, 255, 255, 255, 255, 255, 255, 255,
    43  	255, 255, 255, 255, 255, 255, 255, 255,
    44  	255, 255, 255, 255, 255, 255, 255, 255,
    45  	255, 255, 255, 255, 255, 255, 255, 255,
    46  	255, 255, 255, 255, 255, 255, 255, 255,
    47  }