base58_gmp 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +8 -0
- data/README.rdoc +24 -12
- data/VERSION +1 -1
- data/base58_gmp.gemspec +3 -2
- data/lib/base58_gmp.rb +34 -10
- data/test/test_base58_gmp.rb +6 -0
- data/test/test_encode-decode-multi.rb +1251 -0
- data/test/test_flickr-gmp.rb +18 -0
- metadata +5 -4
- data/test/test_md5_base58.rb +0 -190
data/CHANGELOG
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
= 0.0.5
|
2
|
+
- Add Base58 decoding to GMP::Z integer
|
3
|
+
- Add Base58 encoding of GMP::Z integer
|
4
|
+
- Add Base58 encoding of arbitrary base strings
|
5
|
+
- Add Base58 encoding using GMP alphabet
|
6
|
+
- Add MD5 using GMP alphabet
|
7
|
+
- More tests
|
8
|
+
|
1
9
|
= 0.0.4
|
2
10
|
- Add flickr_to_gmp transcoding
|
3
11
|
- Document Flickr and GMP transcoding
|
data/README.rdoc
CHANGED
@@ -14,12 +14,30 @@ Download and install base58_gmp with the following:
|
|
14
14
|
|
15
15
|
require 'rubygems'
|
16
16
|
require 'base58_gmp'
|
17
|
-
|
18
|
-
# Int
|
19
|
-
Base58GMP.encode(12345)
|
17
|
+
|
18
|
+
# Encode Int as Base58
|
19
|
+
Base58GMP.encode(12345) # => 4ER
|
20
|
+
|
21
|
+
# Encode GMP::Z Int as Base58
|
22
|
+
Base58GMP.encode(GMP::Z(12345)) # => 4ER
|
23
|
+
|
24
|
+
# Encode Arbitrary Base String as Base58
|
25
|
+
# Optional second parameter indicates base
|
26
|
+
# (default 10), and is only used with string input.
|
27
|
+
# Input must use GMP alphabet.
|
28
|
+
Base58GMP.encode('3039',16) # => 4ER
|
29
|
+
|
30
|
+
# Encode as Base58 using GMP alphabet
|
31
|
+
Base58GMP.encode(12345, nil, 'gmp') # => 3cn
|
32
|
+
|
33
|
+
# Decode Base58 as GMP::Z Integer
|
34
|
+
Base58GMP.decode('4ER') # => 12345
|
35
|
+
|
36
|
+
# Decode Base58 as GMP::Z Integer using GMP alphabet
|
37
|
+
Base58GMP.decode('3cn', 'gmp') # => 12345
|
20
38
|
|
21
39
|
# MD5 Base58 Digest
|
22
|
-
Base58GMP.md5('foo@bar.com')
|
40
|
+
Base58GMP.md5('foo@bar.com') # => w6fdCRXnUXyz7EtDn5TgN9
|
23
41
|
|
24
42
|
# Convert between Flickr and GMP
|
25
43
|
Base58GMP.flickr_to_gmp('123456789abcdefghijk') # => 0123456789ABCDEFGHIJ
|
@@ -37,18 +55,12 @@ http://www.flickr.com/groups/api/discuss/72157616713786392/
|
|
37
55
|
|
38
56
|
The GMP implementation uses the [0-9A-Za-v] alphabet.
|
39
57
|
|
40
|
-
The encode and md5
|
58
|
+
The encode, decode and md5 methods support an alphabet parameter which can be set to 'gmp' to indicate the value to be encoded or decoded.
|
41
59
|
|
42
60
|
=== GMP
|
43
61
|
|
44
62
|
This class requires GMP 4.2.0 or above. Prior versions are limited to Base36.
|
45
63
|
|
46
|
-
=== Base58 Decoding Support
|
47
|
-
|
48
|
-
GMP-supported Base58 decoding is not currently provided as underlying support is not yet available in the Ruby GMP binding.
|
49
|
-
|
50
|
-
For now, please use the base58 gem for Ruby-based decoding.
|
51
|
-
|
52
64
|
== Problems, Comments, Suggestions?
|
53
65
|
|
54
66
|
All of the above are most welcome. mailto:john@johnwang.com
|
@@ -57,7 +69,7 @@ All of the above are most welcome. mailto:john@johnwang.com
|
|
57
69
|
|
58
70
|
John Wang - http://johnwang.com
|
59
71
|
|
60
|
-
|
72
|
+
Some test examples courtesy Fraser Speirs' Base58Encoder Objective-C class, http://gist.github.com/101674.
|
61
73
|
|
62
74
|
== License
|
63
75
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/base58_gmp.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'base58_gmp'
|
3
|
-
s.version = '0.0.
|
3
|
+
s.version = '0.0.5'
|
4
4
|
s.date = '2011-11-06'
|
5
5
|
s.summary = 'High speed Base58 encoding using GMP with MD5 support'
|
6
6
|
s.description = 'Base58 encoding using the GNU Multiple Precision Arithmetic Library (GMP)'
|
@@ -20,7 +20,8 @@ Gem::Specification.new do |s|
|
|
20
20
|
'base58_gmp.gemspec',
|
21
21
|
'lib/base58_gmp.rb',
|
22
22
|
'test/test_base58_gmp.rb',
|
23
|
-
'test/
|
23
|
+
'test/test_encode-decode-multi.rb',
|
24
|
+
'test/test_flickr-gmp.rb'
|
24
25
|
]
|
25
26
|
|
26
27
|
end
|
data/lib/base58_gmp.rb
CHANGED
@@ -1,31 +1,55 @@
|
|
1
|
+
# Base58GMP
|
2
|
+
# Copyright (c) 2011 John Wang
|
3
|
+
# http://johnwang.com
|
4
|
+
# Distributed under the MIT license as included with this plugin.
|
5
|
+
|
1
6
|
require 'rubygems'
|
2
7
|
require 'digest/md5'
|
3
8
|
require 'gmp'
|
4
9
|
|
5
10
|
class Base58GMP
|
6
11
|
|
7
|
-
ALPHABET_GMP
|
12
|
+
ALPHABET_GMP = '0-89A-JK-XYZa-fg-kl-v'
|
8
13
|
ALPHABET_FLICKR = '1-9ab-km-zABC-HJ-NP-Z'
|
9
14
|
|
10
|
-
def self.number_to_base58(
|
11
|
-
|
12
|
-
|
15
|
+
def self.number_to_base58(number, base = 10, alphabet = 'flickr')
|
16
|
+
base = 10 unless base.is_a?(Integer)
|
17
|
+
|
18
|
+
base58 = number.is_a?(GMP::Z) ?
|
19
|
+
number.to_s(base = 58) :
|
20
|
+
number.is_a?(String) ?
|
21
|
+
GMP::Z(number, base).to_s(base = 58) :
|
22
|
+
GMP::Z(number).to_s(base = 58)
|
23
|
+
|
24
|
+
alphabet.is_a?(String) && alphabet.downcase == 'gmp' ?
|
25
|
+
base58 :
|
26
|
+
self.gmp_to_flickr(base58)
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.base58_to_number(base58, alphabet = 'flickr')
|
30
|
+
|
31
|
+
unless alphabet.is_a?(String) && alphabet.downcase == 'gmp'
|
32
|
+
base58 = self.flickr_to_gmp(base58)
|
33
|
+
end
|
34
|
+
|
35
|
+
GMP::Z.new(base58, 58)
|
13
36
|
end
|
14
37
|
|
15
|
-
def self.gmp_to_flickr(
|
16
|
-
base58_as_gmp.tr(
|
38
|
+
def self.gmp_to_flickr(base58_as_gmp)
|
39
|
+
base58 = base58_as_gmp.tr(ALPHABET_GMP, ALPHABET_FLICKR)
|
17
40
|
end
|
18
41
|
|
19
|
-
def self.flickr_to_gmp(
|
20
|
-
base58_as_flickr.tr(
|
42
|
+
def self.flickr_to_gmp(base58_as_flickr)
|
43
|
+
base58 = base58_as_flickr.tr(ALPHABET_FLICKR, ALPHABET_GMP)
|
21
44
|
end
|
22
45
|
|
23
|
-
def self.md5_base58(
|
24
|
-
self.number_to_base58(
|
46
|
+
def self.md5_base58(data, alphabet = 'flickr')
|
47
|
+
self.number_to_base58(Digest::MD5.hexdigest(data).hex, nil, alphabet)
|
25
48
|
end
|
26
49
|
|
27
50
|
class << self
|
28
51
|
alias_method :encode, :number_to_base58
|
52
|
+
alias_method :decode, :base58_to_number
|
29
53
|
alias_method :md5, :md5_base58
|
30
54
|
end
|
31
55
|
|
data/test/test_base58_gmp.rb
CHANGED
@@ -0,0 +1,1251 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'base58_gmp'
|
3
|
+
|
4
|
+
class TestBase58GMP < Test::Unit::TestCase
|
5
|
+
MULTI_EXAMPLES = [
|
6
|
+
{
|
7
|
+
'data' => "adam@t1.foobar.com",
|
8
|
+
'b58f' => "cLyvfgxMmJ4imn6MwxfEzb",
|
9
|
+
'b58g' => "BiWTEFVjKg3HKL5jUVEcXA",
|
10
|
+
'hex' => "5f4d4857d79df81230f2d785f7b7ed7c",
|
11
|
+
'dec' => "126677933750746041262251363768011844988"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
'data' => "alexander@t2.foobar.com",
|
15
|
+
'b58f' => "gCWkLkBYTJYgudgBCLPME4",
|
16
|
+
'b58g' => "FasJiJZupguFSCFZailjc3",
|
17
|
+
'hex' => "7ea158248144a5e10be332bc375d06cb",
|
18
|
+
'dec' => "168320475007389035659117543093603993291"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
'data' => "alice@t3.foobar.com",
|
22
|
+
'b58f' => "jbvgmJ6M2f6yqG7BZjyG3V",
|
23
|
+
'b58g' => "IATFKg5j1E5WOe6ZvIWe2r",
|
24
|
+
'hex' => "933bf7f8f22ad591defa4c801bd0c8c9",
|
25
|
+
'dec' => "195707890373739749463188677027356002505"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
'data' => "andrew@t4.foobar.com",
|
29
|
+
'b58f' => "doB64s8kjip3PpUXfPN5DT",
|
30
|
+
'b58g' => "CMZ53Q7JIHN2lNqtElk4bp",
|
31
|
+
'hex' => "6455a66f436935076c5cca60fb630bc5",
|
32
|
+
'dec' => "133367520506649976190886440990014639045"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
'data' => "anna@t5.foobar.com",
|
36
|
+
'b58f' => "52Aa4kRyEQYYngM2ejsgUG",
|
37
|
+
'b58g' => "41Y93JnWcmuuLFj1DIQFqe",
|
38
|
+
'hex' => "209d590fa7dcbf3e8b5479f8e8468d1c",
|
39
|
+
'dec' => "43352292846735302029449898208155569436"
|
40
|
+
},
|
41
|
+
{
|
42
|
+
'data' => "annabel@t6.foobar.com",
|
43
|
+
'b58f' => "uvFiDuVaBvRPZmpeMgfFZc",
|
44
|
+
'b58g' => "STdHbSr9ZTnlvKNDjFEdvB",
|
45
|
+
'hex' => "e6e4ac85abf748b8b58e6f906c878171",
|
46
|
+
'dec' => "306909781879294918726215408864855556465"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
'data' => "anne@t7.foobar.com",
|
50
|
+
'b58f' => "p2ixWDwJhR4rLk5Qp8vG3K",
|
51
|
+
'b58g' => "N1HVsbUgGn3PiJ4mN7Te2h",
|
52
|
+
'hex' => "ba70bfbc7c9a72324046288b7cfabe97",
|
53
|
+
'dec' => "247821833337841958276065096398444084887"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
'data' => "anthony@t8.foobar.com",
|
57
|
+
'b58f' => "cVTPsTPL3XGVGNfguAkKi9",
|
58
|
+
'b58g' => "BrplQpli2terekEFSYJhH8",
|
59
|
+
'hex' => "609ae116edf4f1249c376b5659339646",
|
60
|
+
'dec' => "128410066670390748186526482267804767814"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
'data' => "arthur@t9.foobar.com",
|
64
|
+
'b58f' => "s7MmQ3J7kJdmhs6Dh2iqe5",
|
65
|
+
'b58g' => "Q6jKm2g6JgCKGQ5bG1HOD4",
|
66
|
+
'hex' => "d3800575881701e3544d83fc218d67ce",
|
67
|
+
'dec' => "281131831832370515091840921440803973070"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
'data' => "asher@t10.foobar.com",
|
71
|
+
'b58f' => "3AQfYjm3ereVCbk6UiiDpm",
|
72
|
+
'b58g' => "2YmEuIK2DPDraAJ5qHHbNK",
|
73
|
+
'hex' => "150f4e3d52d072ce1cca38669a59ef76",
|
74
|
+
'dec' => "27993259250858023473538564221784682358"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
'data' => "atticus@t11.foobar.com",
|
78
|
+
'b58f' => "9uNQDKegGRFxssber7iLyd",
|
79
|
+
'b58g' => "8SkmbhDFendVQQADP6HiWC",
|
80
|
+
'hex' => "44ceccdf2796d594a3e2825e86eacd64",
|
81
|
+
'dec' => "91461272157924102332612701657783520612"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
'data' => "august@t12.foobar.com",
|
85
|
+
'b58f' => "opKe6gZux8XrkripZoDKvr",
|
86
|
+
'b58g' => "MNhD5FvSV7tPJPHNvMbhTP",
|
87
|
+
'hex' => "b579cbc7d106b1c0cf79b6255af8a8bf",
|
88
|
+
'dec' => "241222668317196828789511828301388753087"
|
89
|
+
},
|
90
|
+
{
|
91
|
+
'data' => "beatrice@t13.foobar.com",
|
92
|
+
'b58f' => "47ZoJMfkKPjevMifcE9GMq",
|
93
|
+
'b58g' => "36vMgjEJhlIDTjHEBc8ejO",
|
94
|
+
'hex' => "19453f68d7dba349910e6421d335246a",
|
95
|
+
'dec' => "33590254476200534436577819738796008554"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
'data' => "benjamin@t14.foobar.com",
|
99
|
+
'b58f' => "d6nUszRtqn8ZD7ri3AokAP",
|
100
|
+
'b58g' => "C5LqQXnROL7vb6PH2YMJYl",
|
101
|
+
'hex' => "61ede1c230a879aec51894387453ad1f",
|
102
|
+
'dec' => "130170268874092897852157875204060851487"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
'data' => "butch@t15.foobar.com",
|
106
|
+
'b58f' => "m3DKJwLfHtgm1rGuSgs23s",
|
107
|
+
'b58g' => "K2bhgUiEfRFK0PeSoFQ12Q",
|
108
|
+
'hex' => "a2558709197073b06452b396d26596f2",
|
109
|
+
'dec' => "215779019396354858626060097154225379058"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
'data' => "caroline@t16.foobar.com",
|
113
|
+
'b58f' => "8WbKULXo6kwtsHDCHMRDn3",
|
114
|
+
'b58g' => "7sAhqitM5JURQfbafjnbL2",
|
115
|
+
'hex' => "4040c3735075843f57f7694710ce4d90",
|
116
|
+
'dec' => "85406862935193115677662879897353080208"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
'data' => "charles@t17.foobar.com",
|
120
|
+
'b58f' => "p6kBDZhrBNCwQUDyMWAu3J",
|
121
|
+
'b58g' => "N5JZbvGPZkaUmqbWjsYS2g",
|
122
|
+
'hex' => "bb00fefcafbe5757ee416726967870de",
|
123
|
+
'dec' => "248570806963705534444293703759165944030"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
'data' => "charlotte@t18.foobar.com",
|
127
|
+
'b58f' => "9zKZCLPy2ZM8VRxSY8eHh7",
|
128
|
+
'b58g' => "8XhvailW1vj7rnVou7DfG6",
|
129
|
+
'hex' => "457fc4092633b351d1a73ac9a5d0ade2",
|
130
|
+
'dec' => "92380129487351829097873462645503340002"
|
131
|
+
},
|
132
|
+
{
|
133
|
+
'data' => "christopher@t19.foobar.com",
|
134
|
+
'b58f' => "89Zx7mhbQmGektaWbLTD83",
|
135
|
+
'b58g' => "78vV6KGAmKeDJR9sAipb72",
|
136
|
+
'hex' => "39f160fade7f8ee290424c7c4bf501c4",
|
137
|
+
'dec' => "77019306289869557855267295670159344068"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
'data' => "claire@t20.foobar.com",
|
141
|
+
'b58f' => "jerxFmdFLZdiPTbtAE4RRW",
|
142
|
+
'b58g' => "IDPVdKCdivCHlpARYc3nns",
|
143
|
+
'hex' => "93a4e8853290aa41fe95cfc77b290c0c",
|
144
|
+
'dec' => "196252768137205146461410904743885736972"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
'data' => "clementine@t21.foobar.com",
|
148
|
+
'b58f' => "49mAPwbkPzywjJDjH8fkji",
|
149
|
+
'b58g' => "38KYlUAJlXWUIgbIf7EJIH",
|
150
|
+
'hex' => "19760fc17f1bf1e8de8b9e495f30b911",
|
151
|
+
'dec' => "33843710490447806141278790173634640145"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
'data' => "daisy@t22.foobar.com",
|
155
|
+
'b58f' => "oTcUfyaptjpspnRjisQV4d",
|
156
|
+
'b58g' => "MpBqEW9NRINQNLnIHQmr3C",
|
157
|
+
'hex' => "b94f5124b8c256977d0e943a80d3c1ee",
|
158
|
+
'dec' => "246319016456605616502798623965097214446"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
'data' => "daniel@t23.foobar.com",
|
162
|
+
'b58f' => "e5erPbsJTQRZJ21QAzkM3v",
|
163
|
+
'b58g' => "D4DPlAQgpmnvg10mYXJj2T",
|
164
|
+
'hex' => "69de103fb70a88fd926d3a2fa68fac2d",
|
165
|
+
'dec' => "140721959026587288188734931330791353389"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
'data' => "dashiell@t24.foobar.com",
|
169
|
+
'b58f' => "fU7jgzihYccLdbRkD4p4Dw",
|
170
|
+
'b58g' => "Eq6IFXHGuBBiCAnJb3N3bU",
|
171
|
+
'hex' => "78a6824f3574f828a9cf2977c03c0414",
|
172
|
+
'dec' => "160371923761524112291430837210897450004"
|
173
|
+
},
|
174
|
+
{
|
175
|
+
'data' => "david@t25.foobar.com",
|
176
|
+
'b58f' => "3gsB9Mcw1KEcX7rnfxCVWs",
|
177
|
+
'b58g' => "2FQZ8jBU0hcBt6PLEVarsQ",
|
178
|
+
'hex' => "125ad497714ed29898987bc073d747da",
|
179
|
+
'dec' => "24397722510752230842485235424691701722"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
'data' => "delilah@t26.foobar.com",
|
183
|
+
'b58f' => "czpj88sMnUqkcnCF8VjFnt",
|
184
|
+
'b58g' => "BXNI77QjLqOJBLad7rIdLR",
|
185
|
+
'hex' => "5dbe6fbd8fcf65cbd63d25b76497b499",
|
186
|
+
'dec' => "124607006377214598729105640664629490841"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
'data' => "dexter@t27.foobar.com",
|
190
|
+
'b58f' => "j4Q5Dtq6s37yzRZhbS5YC9",
|
191
|
+
'b58g' => "I3m4bRO5Q26WXnvGAo4ua8",
|
192
|
+
'hex' => "924d5b8c2540d07cf97da2313351ab90",
|
193
|
+
'dec' => "194468951045450884643816030770218249104"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
'data' => "diana@t28.foobar.com",
|
197
|
+
'b58f' => "4agRLH5d8g8fwvfBAvNHU9",
|
198
|
+
'b58g' => "39Fnif4C7F7EUTEZYTkfq8",
|
199
|
+
'hex' => "1996e200a3fbd651633747566edb4a94",
|
200
|
+
'dec' => "34014128298724055313755946604748819092"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
'data' => "dixie@t29.foobar.com",
|
204
|
+
'b58f' => "gPaJj7frXSX7m25PRnA8MQ",
|
205
|
+
'b58g' => "Fl9gI6EPtot6K14lnLY7jm",
|
206
|
+
'hex' => "800f087a8dca6099c9b64225fd601e5e",
|
207
|
+
'dec' => "170219239882341955684168725276498337374"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
'data' => "duke@t30.foobar.com",
|
211
|
+
'b58f' => "7EUdabgtAcHwsj8AecAifR",
|
212
|
+
'b58g' => "6cqC9AFRYBfUQI7YDBYHEn",
|
213
|
+
'hex' => "3605454263b41d4c50f662ddabe288e1",
|
214
|
+
'dec' => "71805678002856270157912074219377821921"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
'data' => "edie@t31.foobar.com",
|
218
|
+
'b58f' => "839e6nYnuoKeBA2fcFfjuk",
|
219
|
+
'b58g' => "728D5LuLSMhDZY1EBdEISJ",
|
220
|
+
'hex' => "38fc8706fd0863664d8dc8d1e3374a73",
|
221
|
+
'dec' => "75747965251281381798891401441290177139"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
'data' => "edith@t32.foobar.com",
|
225
|
+
'b58f' => "x5eCBLpMNnkVfdV2hewRZQ",
|
226
|
+
'b58g' => "V4DaZiNjkLJrECr1GDUnvm",
|
227
|
+
'hex' => "fba2ac947136487946e0b0fd04746c3e",
|
228
|
+
'dec' => "334480879368353836724733654160257608766"
|
229
|
+
},
|
230
|
+
{
|
231
|
+
'data' => "edward@t33.foobar.com",
|
232
|
+
'b58f' => "xoXUn5zuPWKmDbPKnyHmh6",
|
233
|
+
'b58g' => "VMtqL4XSlshKbAlhLWfKG5",
|
234
|
+
'hex' => "fe401cdc367b9adb571fae2d5b8d913d",
|
235
|
+
'dec' => "337956803282841135767437561261774967101"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
'data' => "eleanor@t34.foobar.com",
|
239
|
+
'b58f' => "jPuNbfoin3kby2MDCd9yUd",
|
240
|
+
'b58g' => "IlSkAEMHL2JAW1jbaC8WqC",
|
241
|
+
'hex' => "98663307233fbf5741ed2bb503986994",
|
242
|
+
'dec' => "202573304607273730186529031049551833492"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
'data' => "eliza@t35.foobar.com",
|
246
|
+
'b58f' => "tpJVYe8ndsSdQDDXK6RcbD",
|
247
|
+
'b58g' => "RNgruD7LCQoCmbbth5nBAb",
|
248
|
+
'hex' => "ddf74eb16d39ec1e33e53f5c68e9390d",
|
249
|
+
'dec' => "295043480477662250068945605391400122637"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
'data' => "elizabeth@t36.foobar.com",
|
253
|
+
'b58f' => "d9JhheywJsX4cdbHHxvE1D",
|
254
|
+
'b58g' => "C8gGGDWUgQt3BCAffVTc0b",
|
255
|
+
'hex' => "6265aba48bff6a189382111160b14cd5",
|
256
|
+
'dec' => "130792246898421843383415346138501434581"
|
257
|
+
},
|
258
|
+
{
|
259
|
+
'data' => "ella@t37.foobar.com",
|
260
|
+
'b58f' => "wmnv7JjFZXTBdeto9UK51K",
|
261
|
+
'b58g' => "UKLT6gIdvtpZCDRM8qh40h",
|
262
|
+
'hex' => "f5ca494988eb6cafaa7bc9df8d726bb3",
|
263
|
+
'dec' => "326711189374659926314990846899291057075"
|
264
|
+
},
|
265
|
+
{
|
266
|
+
'data' => "elvis@t38.foobar.com",
|
267
|
+
'b58f' => "22UQqi4yQMptXqPQFRWA3m",
|
268
|
+
'b58g' => "11qmOH3WmjNRtOlmdnsY2K",
|
269
|
+
'hex' => "85d716ae4f4719f5f4e11a21e7bcab0",
|
270
|
+
'dec' => "11119007955451601810026446643300911792"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
'data' => "emily@t39.foobar.com",
|
274
|
+
'b58f' => "99JVBHbh4yGMah1iuzYW6",
|
275
|
+
'b58g' => "88grZfAG3Wej9G0HSXus5",
|
276
|
+
'hex' => "123561fd4f46f6968c529d8000e3ba9",
|
277
|
+
'dec' => "1512705195038912935001636011726748585"
|
278
|
+
},
|
279
|
+
{
|
280
|
+
'data' => "emma@t40.foobar.com",
|
281
|
+
'b58f' => "iPTaT5CfzCkFZyhZn8ZCzM",
|
282
|
+
'b58g' => "Hlp9p4aEXaJdvWGvL7vaXj",
|
283
|
+
'hex' => "905ad969451d6f4920e5a21328c57f6f",
|
284
|
+
'dec' => "191880547733527126653057434107188182895"
|
285
|
+
},
|
286
|
+
{
|
287
|
+
'data' => "eve@t41.foobar.com",
|
288
|
+
'b58f' => "4vtKxUhbUeVg2V23s97mnL",
|
289
|
+
'b58g' => "3TRhVqGAqDrF1r12Q86KLi",
|
290
|
+
'hex' => "1c69165ef808f0a3792d579b2a173d6e",
|
291
|
+
'dec' => "37764028789345448245656758818207907182"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
'data' => "faith@t42.foobar.com",
|
295
|
+
'b58f' => "r6oLUF5wZA7LFvXuNibGc1",
|
296
|
+
'b58g' => "P5Miqd4UvY6idTtSkHAeB0",
|
297
|
+
'hex' => "cb35387289786ca11e8ed50e941ef9fe",
|
298
|
+
'dec' => "270109619767333629615049083484043672062"
|
299
|
+
},
|
300
|
+
{
|
301
|
+
'data' => "flora@t43.foobar.com",
|
302
|
+
'b58f' => "x6iZQGGyxJAisWwHt8x2ek",
|
303
|
+
'b58g' => "V5HvmeeWVgYHQsUfR7V1DJ",
|
304
|
+
'hex' => "fbc91bc6ae838c5dc2c655d2637a6791",
|
305
|
+
'dec' => "334680441976824284723803850626190436241"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
'data' => "florence@t44.foobar.com",
|
309
|
+
'b58f' => "q42bQccuA357rAepcvYjCc",
|
310
|
+
'b58g' => "O31AmBBSY246PYDNBTuIaB",
|
311
|
+
'hex' => "c2c74a5e7baf2006559dedafd8b7526b",
|
312
|
+
'dec' => "258905006641158426064910512587332342379"
|
313
|
+
},
|
314
|
+
{
|
315
|
+
'data' => "frances@t45.foobar.com",
|
316
|
+
'b58f' => "srDUk7emsidGNjbLFuYnfK",
|
317
|
+
'b58g' => "QPbqJ6DKQHCekIAidSuLEh",
|
318
|
+
'hex' => "d6228eb7a8e0987239404b367d71b32b",
|
319
|
+
'dec' => "284634223844344640528697976929347810091"
|
320
|
+
},
|
321
|
+
{
|
322
|
+
'data' => "francis@t46.foobar.com",
|
323
|
+
'b58f' => "rW8R8bZXJwhhCEYKQCpbPN",
|
324
|
+
'b58g' => "Ps7n7AvtgUGGacuhmaNAlk",
|
325
|
+
'hex' => "d203774814975a022179e17f83dd52d4",
|
326
|
+
'dec' => "279155875322951146415975694414515098324"
|
327
|
+
},
|
328
|
+
{
|
329
|
+
'data' => "frank@t47.foobar.com",
|
330
|
+
'b58f' => "iDcHArkcoxVyHhCgRruMZW",
|
331
|
+
'b58g' => "HbBfYPJBMVrWfGaFnPSjvs",
|
332
|
+
'hex' => "8edd18ff94472f25859cfa1e32196cc4",
|
333
|
+
'dec' => "189898380034096017465875882890562727108"
|
334
|
+
},
|
335
|
+
{
|
336
|
+
'data' => "frederick@t48.foobar.com",
|
337
|
+
'b58f' => "iEBvmYEvswcsZNpbEJzk7C",
|
338
|
+
'b58g' => "HcZTKucTQUBQvkNAcgXJ6a",
|
339
|
+
'hex' => "8f0f80816f9d1d929049601983463cb4",
|
340
|
+
'dec' => "190160094253526001089684566148001447092"
|
341
|
+
},
|
342
|
+
{
|
343
|
+
'data' => "george@t49.foobar.com",
|
344
|
+
'b58f' => "6kDLTgBZmTdfUrKEsexM1b",
|
345
|
+
'b58g' => "5JbipFZvKpCEqPhcQDVj0A",
|
346
|
+
'hex' => "2b3c1a99211db57b76ca643e9eb9f046",
|
347
|
+
'dec' => "57468881105070953017166104060493426758"
|
348
|
+
},
|
349
|
+
{
|
350
|
+
'data' => "georgia@t50.foobar.com",
|
351
|
+
'b58f' => "a55XavuUnj6Uozu7gPCsLG",
|
352
|
+
'b58g' => "944t9TSqLI5qMXS6FlaQie",
|
353
|
+
'hex' => "49744634eec9c7c77712e9364b759838",
|
354
|
+
'dec' => "97637374090326974943197689354239973432"
|
355
|
+
},
|
356
|
+
{
|
357
|
+
'data' => "grace@t51.foobar.com",
|
358
|
+
'b58f' => "rnXNjudUh8iU1cFanSmcYr",
|
359
|
+
'b58g' => "PLtkISCqG7Hq0Bd9LoKBuP",
|
360
|
+
'hex' => "cd857907fbe68f8fc58bfd7041b90075",
|
361
|
+
'dec' => "273184769422211533826041843707119468661"
|
362
|
+
},
|
363
|
+
{
|
364
|
+
'data' => "gus@t52.foobar.com",
|
365
|
+
'b58f' => "7aDMJbxRPaaNvKccwX4E8k",
|
366
|
+
'b58g' => "69bjgAVnl99kThBBUt3c7J",
|
367
|
+
'hex' => "31efd0567c1ee7bcd7ebd5fbbef3bfe9",
|
368
|
+
'dec' => "66377356335883740692325969406920474601"
|
369
|
+
},
|
370
|
+
{
|
371
|
+
'data' => "harper@t53.foobar.com",
|
372
|
+
'b58f' => "vZ4AV7onL2p5LRcfUDVuiq",
|
373
|
+
'b58g' => "Tv3Yr6MLi1N4inBEqbrSHO",
|
374
|
+
'hex' => "f2d0a2c6439670b221f33d97683651fa",
|
375
|
+
'dec' => "322756474184974221506388382045152104954"
|
376
|
+
},
|
377
|
+
{
|
378
|
+
'data' => "harry@t54.foobar.com",
|
379
|
+
'b58f' => "az4wXc5RbGtqPVudFwxue6",
|
380
|
+
'b58g' => "9X3UtB4nAeROlrSCdUVSD5",
|
381
|
+
'hex' => "4d7ff854642dc9c7a36bae7e0081f4ff",
|
382
|
+
'dec' => "103015014100223657657244003610524775679"
|
383
|
+
},
|
384
|
+
{
|
385
|
+
'data' => "hazel@t55.foobar.com",
|
386
|
+
'b58f' => "a1PDVgXfvzj7et4uNajZ6R",
|
387
|
+
'b58g' => "90lbrFtETXI6DR3Sk9Iv5n",
|
388
|
+
'hex' => "48ff9d9920aff81e8ecaca0e4bde70f7",
|
389
|
+
'dec' => "97031647865773215932344531084310900983"
|
390
|
+
},
|
391
|
+
{
|
392
|
+
'data' => "helen@t56.foobar.com",
|
393
|
+
'b58f' => "21wYy23x9FrFSVTEK5tgM2",
|
394
|
+
'b58g' => "10UuW12V8dPdorpch4RFj1",
|
395
|
+
'hex' => "82c3a4ac88014e72f03f25c080dc9a7",
|
396
|
+
'dec' => "10863467332747740432426411704483432871"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
'data' => "henry@t57.foobar.com",
|
400
|
+
'b58f' => "qQu8GQuD73WamRfkZ97XCx",
|
401
|
+
'b58g' => "OmS7emSb62s9KnEJv86taV",
|
402
|
+
'hex' => "c9205dc3f7fd3230e27e298b64b9e7d3",
|
403
|
+
'dec' => "267342882442574927502996572789169317843"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
'data' => "homer@t58.foobar.com",
|
407
|
+
'b58f' => "jpVQDxWQk91cAdiEMYfibY",
|
408
|
+
'b58g' => "INrmbVsmJ80BYCHcjuEHAu",
|
409
|
+
'hex' => "951bc82a70ea02f072e82bc3bf7104b0",
|
410
|
+
'dec' => "198199223231581684963836474150054069424"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
'data' => "hopper@t59.foobar.com",
|
414
|
+
'b58f' => "5Hcu7XohWve1GDMc5v44Tm",
|
415
|
+
'b58g' => "4fBS6tMGsTD0ebjB4T33pK",
|
416
|
+
'hex' => "262520821f0d99a107ea674eff4b1d16",
|
417
|
+
'dec' => "50703438169971512333102494252087844118"
|
418
|
+
},
|
419
|
+
{
|
420
|
+
'data' => "hudson@t60.foobar.com",
|
421
|
+
'b58f' => "9cGj3mSi8mDP2QLnqXScFC",
|
422
|
+
'b58g' => "8BeI2KoH7Kbl1miLOtoBda",
|
423
|
+
'hex' => "426b2220ec652b3671839e4bdd9c8a06",
|
424
|
+
'dec' => "88285315696056166672838258823345768966"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
'data' => "hugh@t61.foobar.com",
|
428
|
+
'b58f' => "pptG5q3SGUui2uwGGpcpAE",
|
429
|
+
'b58g' => "NNRe4O2oeqSH1SUeeNBNYc",
|
430
|
+
'hex' => "bd895c6e1666f9043dcb810fd465f23e",
|
431
|
+
'dec' => "251937310576682940483848639912876569150"
|
432
|
+
},
|
433
|
+
{
|
434
|
+
'data' => "hugo@t62.foobar.com",
|
435
|
+
'b58f' => "kY5JTDDXRL8MtZrP4BqjuN",
|
436
|
+
'b58g' => "Ju4gpbbtni7jRvPl3ZOISk",
|
437
|
+
'hex' => "a1b234db8e7267d942b2d7f1f1a1a01e",
|
438
|
+
'dec' => "214931008242542814715707751534692507678"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
'data' => "ike@t63.foobar.com",
|
442
|
+
'b58f' => "sxsMu3s9XDwzEH5ZSUxvbP",
|
443
|
+
'b58g' => "QVQjS2Q8tbUXcf4voqVTAl",
|
444
|
+
'hex' => "d6f22b1ad63799ed251d7ff39db7021f",
|
445
|
+
'dec' => "285712201207579617398691406450234163743"
|
446
|
+
},
|
447
|
+
{
|
448
|
+
'data' => "india@t64.foobar.com",
|
449
|
+
'b58f' => "t2Rzr9QNoXwEYr18P9QGft",
|
450
|
+
'b58g' => "R1nXP8mkMtUcuP07l8meER",
|
451
|
+
'hex' => "dae90a47ca3b71bb1cbc4725b29f6607",
|
452
|
+
'dec' => "290981716761033685846243034613185209863"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
'data' => "ione@t65.foobar.com",
|
456
|
+
'b58f' => "uLeGJWFRpRWwzLbbCHrs3w",
|
457
|
+
'b58g' => "SiDegsdnNnsUXiAAafPQ2U",
|
458
|
+
'hex' => "e8ed0d82c159c69c92e7124d93136bb2",
|
459
|
+
'dec' => "309611743408398350198030797612466269106"
|
460
|
+
},
|
461
|
+
{
|
462
|
+
'data' => "irene@t66.foobar.com",
|
463
|
+
'b58f' => "oV4fFctoDETxRNhyzpsLig",
|
464
|
+
'b58g' => "Mr3EdBRMbcpVnkGWXNQiHF",
|
465
|
+
'hex' => "b991799ef2db56aca9a4544f91513039",
|
466
|
+
'dec' => "246662529029469242039070471394446880825"
|
467
|
+
},
|
468
|
+
{
|
469
|
+
'data' => "iris@t67.foobar.com",
|
470
|
+
'b58f' => "q3mKKPV83BrL6Ed7N4tQfB",
|
471
|
+
'b58g' => "O2Khhlr72ZPi5cC6k3RmEZ",
|
472
|
+
'hex' => "c2af9b119ffcf8d237b57d0b07fa79b7",
|
473
|
+
'dec' => "258782028302398543822595869225684466103"
|
474
|
+
},
|
475
|
+
{
|
476
|
+
'data' => "isla@t68.foobar.com",
|
477
|
+
'b58f' => "iSG8o3GpnfFxqxRd3NcJeu",
|
478
|
+
'b58g' => "Hoe7M2eNLEdVOVnC2kBgDS",
|
479
|
+
'hex' => "90bf46673228bb7e3491250ee2f67f4e",
|
480
|
+
'dec' => "192401988037704525295815727943616200526"
|
481
|
+
},
|
482
|
+
{
|
483
|
+
'data' => "ivy@t69.foobar.com",
|
484
|
+
'b58f' => "cQttt28wtoq3jcGB1zBLVA",
|
485
|
+
'b58g' => "BmRRR17URMO2IBeZ0XZirY",
|
486
|
+
'hex' => "5fd9284b1cfe329b816ef0433256769c",
|
487
|
+
'dec' => "127404205265338286577970974527560513180"
|
488
|
+
},
|
489
|
+
{
|
490
|
+
'data' => "jack@t70.foobar.com",
|
491
|
+
'b58f' => "wxArA8fKvrFgz7W7JpMD9u",
|
492
|
+
'b58g' => "UVYPY7EhTPdFX6s6gNjb8S",
|
493
|
+
'hex' => "f75b7119d0f3e493ab5b5b393d52ba58",
|
494
|
+
'dec' => "328794107930657895857386130336585529944"
|
495
|
+
},
|
496
|
+
{
|
497
|
+
'data' => "jacob@t71.foobar.com",
|
498
|
+
'b58f' => "bivemVTZPiBZQ38ZzqWrAC",
|
499
|
+
'b58g' => "AHTDKrpvlHZvm27vXOsPYa",
|
500
|
+
'hex' => "536d0b66e7ab6cea9ab7671af3aeb3ac",
|
501
|
+
'dec' => "110892115267204808213014476466452083628"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
'data' => "james@t72.foobar.com",
|
505
|
+
'b58f' => "hNJPaGPKT1YmEHyBkmMsWd",
|
506
|
+
'b58g' => "Gkgl9elhp0uKcfWZJKjQsC",
|
507
|
+
'hex' => "8818d10aba076e2dba0785c898d4fad8",
|
508
|
+
'dec' => "180903862424815377531093387098417593048"
|
509
|
+
},
|
510
|
+
{
|
511
|
+
'data' => "jane@t73.foobar.com",
|
512
|
+
'b58f' => "mpEHWdfJfvTfbqJedP9ZqE",
|
513
|
+
'b58g' => "KNcfsCEgETpEAOgDCl8vOc",
|
514
|
+
'hex' => "a544be6a91da1dc45a1318d094e5d38a",
|
515
|
+
'dec' => "219679557592040420460719998154110784394"
|
516
|
+
},
|
517
|
+
{
|
518
|
+
'data' => "jean@t74.foobar.com",
|
519
|
+
'b58f' => "kkY69EJdQohctAsJQMvmuE",
|
520
|
+
'b58g' => "JJu58cgCmMGBRYQgmjTKSc",
|
521
|
+
'hex' => "9ca7550536490830479877c57aa7a126",
|
522
|
+
'dec' => "208228405335579796134985302974107459878"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
'data' => "jill@t75.foobar.com",
|
526
|
+
'b58f' => "5URSdHeFGbtZ7Z35GpUPgB",
|
527
|
+
'b58g' => "4qnoCfDdeARv6v24eNqlFZ",
|
528
|
+
'hex' => "27c5f62b70d9b58b90f82228209169b5",
|
529
|
+
'dec' => "52867767231242081836083775444920396213"
|
530
|
+
},
|
531
|
+
{
|
532
|
+
'data' => "john@t76.foobar.com",
|
533
|
+
'b58f' => "9FtjroUqSCHb2RCGyBqjAT",
|
534
|
+
'b58g' => "8dRIPMqOoafA1naeWZOIYp",
|
535
|
+
'hex' => "464bf39972473ad254ddfc0b2c93545f",
|
536
|
+
'dec' => "93440322752144177843776511857021637727"
|
537
|
+
},
|
538
|
+
{
|
539
|
+
'data' => "jonathan@t77.foobar.com",
|
540
|
+
'b58f' => "8nHqePr6kErsi8oHtAceLU",
|
541
|
+
'b58g' => "7LfODlP5JcPQH7MfRYBDiq",
|
542
|
+
'hex' => "3bb81d4e6ff3afd920675b25944ff0f8",
|
543
|
+
'dec' => "79380428777603062279783413497396719864"
|
544
|
+
},
|
545
|
+
{
|
546
|
+
'data' => "joseph@t78.foobar.com",
|
547
|
+
'b58f' => "kyzmfyyPzCZMeaGnST2Bf2",
|
548
|
+
'b58g' => "JWXKEWWlXavjD9eLop1ZE1",
|
549
|
+
'hex' => "9e69fcc17f49695356655bfc19d2baf1",
|
550
|
+
'dec' => "210568341001811695511689842186842716913"
|
551
|
+
},
|
552
|
+
{
|
553
|
+
'data' => "judith@t79.foobar.com",
|
554
|
+
'b58f' => "9r5SHvk4vbxNsahcZ6i2BM",
|
555
|
+
'b58g' => "8P4ofTJ3TAVkQ9GBv5H1Zj",
|
556
|
+
'hex' => "4449b51e1164cae33db89064765fad97",
|
557
|
+
'dec' => "90770214882413554013430705469276532119"
|
558
|
+
},
|
559
|
+
{
|
560
|
+
'data' => "julia@t80.foobar.com",
|
561
|
+
'b58f' => "mkbZ6sbrx3s5DLceRUhqnX",
|
562
|
+
'b58g' => "KJAv5QAPV2Q4biBDnqGOLt",
|
563
|
+
'hex' => "a4a4ac97f94f01f7146667c4d7c04079",
|
564
|
+
'dec' => "218848428608587564493977978153017032825"
|
565
|
+
},
|
566
|
+
{
|
567
|
+
'data' => "julian@t81.foobar.com",
|
568
|
+
'b58f' => "xwao2JiMxHxQbybEMxHUx4",
|
569
|
+
'b58g' => "VU9M1gHjVfVmAWAcjVfqV3",
|
570
|
+
'hex' => "ff41645f7a08525b84a5650e900fa751",
|
571
|
+
'dec' => "339292674026361346935504227078373353297"
|
572
|
+
},
|
573
|
+
{
|
574
|
+
'data' => "june@t82.foobar.com",
|
575
|
+
'b58f' => "2AJRk8P3JCjRnV2SBhptEg",
|
576
|
+
'b58g' => "1YgnJ7l2gaInLr1oZGNRcF",
|
577
|
+
'hex' => "cf2d59bcc3ce4efd9255cb0fb6738ef",
|
578
|
+
'dec' => "17211604286003744954430906660471388399"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
'data' => "kai@t83.foobar.com",
|
582
|
+
'b58f' => "qF9STnT3WN9Z5qzSfY85sd",
|
583
|
+
'b58g' => "Od8opLp2sk8v4OXoEu74QC",
|
584
|
+
'hex' => "c7d2ce440d685479c8f89bdc0bfab2d8",
|
585
|
+
'dec' => "265610937069533408062170795987529544408"
|
586
|
+
},
|
587
|
+
{
|
588
|
+
'data' => "kate@t84.foobar.com",
|
589
|
+
'b58f' => "uxQaYE2WWsQi1YnNWR5xKF",
|
590
|
+
'b58g' => "SVm9uc1ssQmH0uLksn4Vhd",
|
591
|
+
'hex' => "e731a05c4a5bae2cf3307feadd52d1b1",
|
592
|
+
'dec' => "307309342069924034271477187109970956721"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
'data' => "katherine@t85.foobar.com",
|
596
|
+
'b58f' => "vcNFyUwtsKgbHtG3zG98Zq",
|
597
|
+
'b58g' => "TBkdWqURQhFAfRe2Xe87vO",
|
598
|
+
'hex' => "ec7ef8b681b8bd6113de3e014f4013de",
|
599
|
+
'dec' => "314357080906669720432661582760271418334"
|
600
|
+
},
|
601
|
+
{
|
602
|
+
'data' => "kingston@t86.foobar.com",
|
603
|
+
'b58f' => "oLvodypvWHCM11xd5xUJGe",
|
604
|
+
'b58g' => "MiTMCWNTsfaj00VC4VqgeD",
|
605
|
+
'hex' => "b85fe2645a6be0160798ec1de252c115",
|
606
|
+
'dec' => "245075811201356070106048268572927639829"
|
607
|
+
},
|
608
|
+
{
|
609
|
+
'data' => "laura@t87.foobar.com",
|
610
|
+
'b58f' => "wj48zQvxTCR9aLk63qV4Kw",
|
611
|
+
'b58g' => "UI37XmTVpan89iJ52Or3hU",
|
612
|
+
'hex' => "f5777a200f649a2c93af5e2169492510",
|
613
|
+
'dec' => "326281219287506775105496951448943535376"
|
614
|
+
},
|
615
|
+
{
|
616
|
+
'data' => "lennon@t88.foobar.com",
|
617
|
+
'b58f' => "ePKh1xSQpgsiz8v8gdACqc",
|
618
|
+
'b58g' => "DlhG0VomNFQHX7T7FCYaOB",
|
619
|
+
'hex' => "6ff16df82d3f3beb417005b7a9f71a3b",
|
620
|
+
'dec' => "148797881520266927648349238213429631547"
|
621
|
+
},
|
622
|
+
{
|
623
|
+
'data' => "leo@t89.foobar.com",
|
624
|
+
'b58f' => "cHyotGtfcJnU7VCbJUBecG",
|
625
|
+
'b58g' => "BfWMReREBgLq6raAgqZDBe",
|
626
|
+
'hex' => "5ee1fab788722ca7810db478039595f2",
|
627
|
+
'dec' => "126120783540335071050526782651301729778"
|
628
|
+
},
|
629
|
+
{
|
630
|
+
'data' => "leonora@t90.foobar.com",
|
631
|
+
'b58f' => "g3HEhnT2xUSqqSQdbnBdZT",
|
632
|
+
'b58g' => "F2fcGLp1VqoOOomCALZCvp",
|
633
|
+
'hex' => "79da3dc941d08c6cc57f12bef1d55dd5",
|
634
|
+
'dec' => "161969761377350546510062367583589719509"
|
635
|
+
},
|
636
|
+
{
|
637
|
+
'data' => "leopold@t91.foobar.com",
|
638
|
+
'b58f' => "oJZSBpt8jrai34aqmG49ig",
|
639
|
+
'b58g' => "MgvoZNR7IP9H239OKe38HF",
|
640
|
+
'hex' => "b829f440bb438979297922a91deb5e01",
|
641
|
+
'dec' => "244795789432125484533329650561181244929"
|
642
|
+
},
|
643
|
+
{
|
644
|
+
'data' => "levi@t92.foobar.com",
|
645
|
+
'b58f' => "vJKcfBSHnwpwZ6g9H29UV9",
|
646
|
+
'b58g' => "TghBEZofLUNUv5F8f18qr8",
|
647
|
+
'hex' => "f0d0e0f458dd70d02a5ac487c5465aca",
|
648
|
+
'dec' => "320099279353880311313755390324920179402"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
'data' => "lila@t93.foobar.com",
|
652
|
+
'b58f' => "c4gm3ivHspRg9Rj6U11a5",
|
653
|
+
'b58g' => "B3FK2HTfQNnF8nI5q0094",
|
654
|
+
'hex' => "18b317e91bf0d8a73ec2a47e391b26e",
|
655
|
+
'dec' => "2051961125046607842836342763775177326"
|
656
|
+
},
|
657
|
+
{
|
658
|
+
'data' => "lionel@t94.foobar.com",
|
659
|
+
'b58f' => "rSeNeb5CwYajNAb8yLrNcp",
|
660
|
+
'b58g' => "PoDkDA4aUu9IkYA7WiPkBN",
|
661
|
+
'hex' => "d178286004ceb134bb7cdcff4b477275",
|
662
|
+
'dec' => "278432545645847159778246771644599595637"
|
663
|
+
},
|
664
|
+
{
|
665
|
+
'data' => "lola@t95.foobar.com",
|
666
|
+
'b58f' => "bnkNUMarkMh3TDRtJgBNJE",
|
667
|
+
'b58g' => "ALJkqj9PJjG2pbnRgFZkgc",
|
668
|
+
'hex' => "53f6369f8e73f84b482c8422050a000a",
|
669
|
+
'dec' => "111604336568831092405347974890908155914"
|
670
|
+
},
|
671
|
+
{
|
672
|
+
'data' => "louis@t96.foobar.com",
|
673
|
+
'b58f' => "ku1kVEn1Y2hjmTJ3KamydJ",
|
674
|
+
'b58g' => "JS0JrcL0u1GIKpg2h9KWCg",
|
675
|
+
'hex' => "9dc6abfbe7ea07b1925f89a537dfc272",
|
676
|
+
'dec' => "209720358366306665675044893128138932850"
|
677
|
+
},
|
678
|
+
{
|
679
|
+
'data' => "louisa@t97.foobar.com",
|
680
|
+
'b58f' => "fBQRiZhJLVUxPpwHVjt6qV",
|
681
|
+
'b58g' => "EZmnHvGgirqVlNUfrIR5Or",
|
682
|
+
'hex' => "766114039508fd0f702b44088d063311",
|
683
|
+
'dec' => "157352962229898644772259471141707854609"
|
684
|
+
},
|
685
|
+
{
|
686
|
+
'data' => "luca@t98.foobar.com",
|
687
|
+
'b58f' => "h9d74J1GYGZ7F9jvJob1ua",
|
688
|
+
'b58g' => "G8C63g0euev6d8ITgMA0S9",
|
689
|
+
'hex' => "82b7a0dff207479f737c8ca73716a7d1",
|
690
|
+
'dec' => "173753092705471934968608194946733090769"
|
691
|
+
},
|
692
|
+
{
|
693
|
+
'data' => "lucy@t99.foobar.com",
|
694
|
+
'b58f' => "3JAMMqpzhUL1cx9gLAZtAt",
|
695
|
+
'b58g' => "2gYjjONXGqi0BV8FiYvRYR",
|
696
|
+
'hex' => "1624f492f48845e48f8ee1281b117fe3",
|
697
|
+
'dec' => "29434899145109507456052791085139853283"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
'data' => "luke@t100.foobar.com",
|
701
|
+
'b58f' => "78fqBQFx8EBRHhiQdNJvEr",
|
702
|
+
'b58g' => "67EOZmdV7cZnfGHmCkgTcP",
|
703
|
+
'hex' => "3199ed7fca536bece85865e90e122139",
|
704
|
+
'dec' => "65931410268486233647240291988530143545"
|
705
|
+
},
|
706
|
+
{
|
707
|
+
'data' => "lulu@t101.foobar.com",
|
708
|
+
'b58f' => "4Lt6GFG8KwtKDFXxT9ZKZk",
|
709
|
+
'b58g' => "3iR5ede7hURhbdtVp8vhvJ",
|
710
|
+
'hex' => "1e80d77efa2fc0876444d3cfeb76bc91",
|
711
|
+
'dec' => "40545824649682177190772249051362933905"
|
712
|
+
},
|
713
|
+
{
|
714
|
+
'data' => "madeline@t102.foobar.com",
|
715
|
+
'b58f' => "x1t6CDsqgVFaYQ8t7c1x3r",
|
716
|
+
'b58g' => "V0R5abQOFrd9um7R6B0V2P",
|
717
|
+
'hex' => "fb1bff6568aed636f41e3f758cae6799",
|
718
|
+
'dec' => "333781599006085475275657012705099671449"
|
719
|
+
},
|
720
|
+
{
|
721
|
+
'data' => "magnus@t103.foobar.com",
|
722
|
+
'b58f' => "jyUa5mGS5qqLWKqdyM2j7M",
|
723
|
+
'b58g' => "IWq94Keo4OOishOCWj1I6j",
|
724
|
+
'hex' => "965c7067dfe01fd7d990f191b6760609",
|
725
|
+
'dec' => "199864170538385039982551986909836871177"
|
726
|
+
},
|
727
|
+
{
|
728
|
+
'data' => "mamie@t104.foobar.com",
|
729
|
+
'b58f' => "gon7gmCvbkL1zbyfnU8zki",
|
730
|
+
'b58g' => "FML6FKaTAJi0XAWELq7XJH",
|
731
|
+
'hex' => "7c98737c464528bc3f407d28b31115fb",
|
732
|
+
'dec' => "165615842922970992686737871753800914427"
|
733
|
+
},
|
734
|
+
{
|
735
|
+
'data' => "margaret@t105.foobar.com",
|
736
|
+
'b58f' => "pCtYEFcXX2ccwAnEy9ypzX",
|
737
|
+
'b58g' => "NaRucdBtt1BBUYLcW8WNXt",
|
738
|
+
'hex' => "bf5a34d32e9dbbdc79ef7266f351636d",
|
739
|
+
'dec' => "254350925329055745562895900644058686317"
|
740
|
+
},
|
741
|
+
{
|
742
|
+
'data' => "maria@t106.foobar.com",
|
743
|
+
'b58f' => "vEE2nbqjWK31Mymb5J7JVV",
|
744
|
+
'b58g' => "Tcc1LAOIsh20jWKA4g6grr",
|
745
|
+
'hex' => "f03eb79cdab2074247b0ed7b13fbeeaf",
|
746
|
+
'dec' => "319340365501842744506967839992448806575"
|
747
|
+
},
|
748
|
+
{
|
749
|
+
'data' => "marian@t107.foobar.com",
|
750
|
+
'b58f' => "oHmtco8KggGsgky3ViPu9h",
|
751
|
+
'b58g' => "MfKRBM7hFFeQFJW2rHlS8G",
|
752
|
+
'hex' => "b7ef28d4db82dc3e5202aca10a2724d8",
|
753
|
+
'dec' => "244490510338519445213130319579457201368"
|
754
|
+
},
|
755
|
+
{
|
756
|
+
'data' => "mark@t108.foobar.com",
|
757
|
+
'b58f' => "rc5LpJLg4UwdzgxqugrDuq",
|
758
|
+
'b58g' => "PB4iNgiF3qUCXFVOSFPbSO",
|
759
|
+
'hex' => "cc0095bd7b3eb04093ceca830ed6007c",
|
760
|
+
'dec' => "271165548231418939303814442687403524220"
|
761
|
+
},
|
762
|
+
{
|
763
|
+
'data' => "martha@t109.foobar.com",
|
764
|
+
'b58f' => "ruTREKhJqfm1t6yLGM9w17",
|
765
|
+
'b58g' => "PSpnchGgOEK0R5Wiej8U06",
|
766
|
+
'hex' => "ce7d3fea402a7f259d23855b48888e4e",
|
767
|
+
'dec' => "274471300590062997612228066536183074382"
|
768
|
+
},
|
769
|
+
{
|
770
|
+
'data' => "martin@t110.foobar.com",
|
771
|
+
'b58f' => "e6H2s8W6bTksoVCN86oYGT",
|
772
|
+
'b58g' => "D5f1Q7s5ApJQMrak75Muep",
|
773
|
+
'hex' => "6a12cdd25d324f4a5fcec73f42f33bc3",
|
774
|
+
'dec' => "140995803457380512656345606514329992131"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
'data' => "mary@t111.foobar.com",
|
778
|
+
'b58f' => "aQjwtP33evg7HJeoV9NuQ8",
|
779
|
+
'b58g' => "9mIURl22DTF6fgDMr8kSm7",
|
780
|
+
'hex' => "4fa15d9b40acb1ee8fec15073d3976a7",
|
781
|
+
'dec' => "105846870025706606653018967014108657319"
|
782
|
+
},
|
783
|
+
{
|
784
|
+
'data' => "matilda@t112.foobar.com",
|
785
|
+
'b58f' => "pP9mqi9ZCqaBJQf5BP5zHu",
|
786
|
+
'b58g' => "Nl8KOH8vaO9ZgmE4Zl4XfS",
|
787
|
+
'hex' => "c0d74b2309417caf1e51ba1d10faf27a",
|
788
|
+
'dec' => "256329642971859331482674501280803254906"
|
789
|
+
},
|
790
|
+
{
|
791
|
+
'data' => "matthew@t113.foobar.com",
|
792
|
+
'b58f' => "iPa4rqs6XBEHXCjjNwfM8X",
|
793
|
+
'b58g' => "Hl93POQ5tZcftaIIkUEj7t",
|
794
|
+
'hex' => "9040e5bb5c38aa02855ccd5c6a537571",
|
795
|
+
'dec' => "191745797907980864664599905403978085745"
|
796
|
+
},
|
797
|
+
{
|
798
|
+
'data' => "michael@t114.foobar.com",
|
799
|
+
'b58f' => "o5v95kkqNSty5naX3RMnc4",
|
800
|
+
'b58g' => "M4T84JJOkoRW4L9t2njLB3",
|
801
|
+
'hex' => "b2c9fbb8586b14748543baf74956060d",
|
802
|
+
'dec' => "237651340408437077447858640178654873101"
|
803
|
+
},
|
804
|
+
{
|
805
|
+
'data' => "millie@t115.foobar.com",
|
806
|
+
'b58f' => "6uDWP8ieVow3TMZwNfNAXM",
|
807
|
+
'b58g' => "5Sbsl7HDrMU2pjvUkEkYtj",
|
808
|
+
'hex' => "2c7de74039f98edea6906ed3a20d1d3b",
|
809
|
+
'dec' => "59139759247016339082240038792481021243"
|
810
|
+
},
|
811
|
+
{
|
812
|
+
'data' => "milo@t116.foobar.com",
|
813
|
+
'b58f' => "7zFWBQK4DLjR6xKCyZfkfb",
|
814
|
+
'b58g' => "6XdsZmh3biIn5VhaWvEJEA",
|
815
|
+
'hex' => "354afdc67fb65989cdb6c0eb68b42122",
|
816
|
+
'dec' => "70838460920463063784493980174817435938"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
'data' => "minnie@t117.foobar.com",
|
820
|
+
'b58f' => "eNJD4n4vii5YWpR4zdaJeV",
|
821
|
+
'b58g' => "Dkgb3L3THH4usNn3XC9gDr",
|
822
|
+
'hex' => "6fcd4b0d7d517b6f557430612af03517",
|
823
|
+
'dec' => "148610250637595820240770023684809176343"
|
824
|
+
},
|
825
|
+
{
|
826
|
+
'data' => "moses@t118.foobar.com",
|
827
|
+
'b58f' => "rxR5gbUKw3paMpUwtQ1sQA",
|
828
|
+
'b58g' => "PVn4FAqhU2N9jNqURm0QmY",
|
829
|
+
'hex' => "cee6c4170a4dd0edb06162eebdd47e0a",
|
830
|
+
'dec' => "275019172586874657751369234776245698058"
|
831
|
+
},
|
832
|
+
{
|
833
|
+
'data' => "nathan@t119.foobar.com",
|
834
|
+
'b58f' => "foGEysvSy36aiXbqwSw8zp",
|
835
|
+
'b58g' => "EMecWQToW259HtAOUoU7XN",
|
836
|
+
'hex' => "748b5d614f4d586244013b2d6f00661d",
|
837
|
+
'dec' => "154914070748154306231125793214316963357"
|
838
|
+
},
|
839
|
+
{
|
840
|
+
'data' => "nathaniel@t120.foobar.com",
|
841
|
+
'b58f' => "5yoDz6zDST9F3yKyUKKHcN",
|
842
|
+
'b58g' => "4WMbX5Xbop8d2WhWqhhfBk",
|
843
|
+
'hex' => "24ea4ffd9fb2870e6db733b7824a03d8",
|
844
|
+
'dec' => "49068827717661868823574812199106511832"
|
845
|
+
},
|
846
|
+
{
|
847
|
+
'data' => "nicholas@t121.foobar.com",
|
848
|
+
'b58f' => "37xHbT6Tzd9KcpPVYQNueA",
|
849
|
+
'b58g' => "26VfAp5pXC8hBNlrumkSDY",
|
850
|
+
'hex' => "111c483152d3c743dff1af12e947edf4",
|
851
|
+
'dec' => "22743724481687766288474438032565988852"
|
852
|
+
},
|
853
|
+
{
|
854
|
+
'data' => "olive@t122.foobar.com",
|
855
|
+
'b58f' => "wmyGY8fyaLBg9QXy46mT7R",
|
856
|
+
'b58g' => "UKWeu7EW9iZF8mtW35Kp6n",
|
857
|
+
'hex' => "f5d130f24f4207ab9057f75061a70a89",
|
858
|
+
'dec' => "326747041764143612669286147042870495881"
|
859
|
+
},
|
860
|
+
{
|
861
|
+
'data' => "olivia@t123.foobar.com",
|
862
|
+
'b58f' => "rR9J61gvnvoL7gPPMSSUnF",
|
863
|
+
'b58g' => "Pn8g50FTLTMi6FlljooqLd",
|
864
|
+
'hex' => "d15149e0e0150085d84b9631ab35b489",
|
865
|
+
'dec' => "278230725596948240353155095390353470601"
|
866
|
+
},
|
867
|
+
{
|
868
|
+
'data' => "orson@t124.foobar.com",
|
869
|
+
'b58f' => "pYUvs2RzKhJ98mtSWCgdcA",
|
870
|
+
'b58g' => "NuqTQ1nXhGg87KRosaFCBY",
|
871
|
+
'hex' => "c234330829165f8998d31ec0f3569ca8",
|
872
|
+
'dec' => "258141265668348509663067137263653002408"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
'data' => "oscar@t125.foobar.com",
|
876
|
+
'b58f' => "78znFsuexcTXmP7PxwyE6R",
|
877
|
+
'b58g' => "67XLdQSDVBptKl6lVUWc5n",
|
878
|
+
'hex' => "31a59b0e173e8a46f3a149723a939fab",
|
879
|
+
'dec' => "65992045664995727161719674319257444267"
|
880
|
+
},
|
881
|
+
{
|
882
|
+
'data' => "otis@t126.foobar.com",
|
883
|
+
'b58f' => "2Q8pdN9AmWg8xi2gp6S1mu",
|
884
|
+
'b58g' => "1m7NCk8YKsF7VH1FN5o0KS",
|
885
|
+
'hex' => "ed16676da65eb5f72565c70b2f7a664",
|
886
|
+
'dec' => "19696460206716295514228589339658921572"
|
887
|
+
},
|
888
|
+
{
|
889
|
+
'data' => "pamela@t127.foobar.com",
|
890
|
+
'b58f' => "ij9ddEeBWXc8NrjzoxqeeU",
|
891
|
+
'b58g' => "HI8CCcDZstB7kPIXMVODDq",
|
892
|
+
'hex' => "8c33ce19a22fbb376a0f30d028c7e6aa",
|
893
|
+
'dec' => "186360906756950188725629206869974705834"
|
894
|
+
},
|
895
|
+
{
|
896
|
+
'data' => "patricia@t128.foobar.com",
|
897
|
+
'b58f' => "sVBFufZC7vbVAra9ZNprvd",
|
898
|
+
'b58g' => "QrZdSEva6TArYP98vkNPTC",
|
899
|
+
'hex' => "da0a0398f48f81b23771e37037e183ba",
|
900
|
+
'dec' => "289823699015294352953910878625771652026"
|
901
|
+
},
|
902
|
+
{
|
903
|
+
'data' => "patrick@t129.foobar.com",
|
904
|
+
'b58f' => "9xLQ7fv3erkjBv6QEa9Ppy",
|
905
|
+
'b58g' => "8Vim6ET2DPJIZT5mc98lNW",
|
906
|
+
'hex' => "4538cb142a711787918ec253c06fe702",
|
907
|
+
'dec' => "92011619260085027297284244299641251586"
|
908
|
+
},
|
909
|
+
{
|
910
|
+
'data' => "paul@t130.foobar.com",
|
911
|
+
'b58f' => "92v4ieSoNv5KAWwqDQaLuv",
|
912
|
+
'b58g' => "81T3HDoMkT4hYsUObm9iST",
|
913
|
+
'hex' => "40fec28d573148993c2e1b4444703e2d",
|
914
|
+
'dec' => "86393381117921261075517425553868078637"
|
915
|
+
},
|
916
|
+
{
|
917
|
+
'data' => "pearl@t131.foobar.com",
|
918
|
+
'b58f' => "sMtVHCfgoGsXcFL8P2gEv4",
|
919
|
+
'b58g' => "QjRrfaEFMeQtBdi7l1FcT3",
|
920
|
+
'hex' => "d8e748f09cc9385042bc2b5574859275",
|
921
|
+
'dec' => "288314147060636761628068120255474799221"
|
922
|
+
},
|
923
|
+
{
|
924
|
+
'data' => "peter@t132.foobar.com",
|
925
|
+
'b58f' => "aiDSCwedfswZBEk3p93gg4",
|
926
|
+
'b58g' => "9HboaUDCEQUvZcJ2N82FF3",
|
927
|
+
'hex' => "4b593b67985b3c2d84006327dbf992b5",
|
928
|
+
'dec' => "100155418974097662468540077349738746549"
|
929
|
+
},
|
930
|
+
{
|
931
|
+
'data' => "philip@t133.foobar.com",
|
932
|
+
'b58f' => "uM6TUDWqaFV8R5htKkpirw",
|
933
|
+
'b58g' => "Sj5pqbsO9dr7n4GRhJNHPU",
|
934
|
+
'hex' => "e90bfc2ae3f673e79ea5e0d7c99b9b94",
|
935
|
+
'dec' => "309772352848683267636395625001275595668"
|
936
|
+
},
|
937
|
+
{
|
938
|
+
'data' => "piper@t134.foobar.com",
|
939
|
+
'b58f' => "gPXui9N46dUHj1BuZeuySk",
|
940
|
+
'b58g' => "FltSH8k35CqfI0ZSvDSWoJ",
|
941
|
+
'hex' => "802b3b9204d6bae794cf21d0e3aadd37",
|
942
|
+
'dec' => "170365660456362104647631848721334590775"
|
943
|
+
},
|
944
|
+
{
|
945
|
+
'data' => "poppy@t135.foobar.com",
|
946
|
+
'b58f' => "9oTgGP72muLRPePw86E7yU",
|
947
|
+
'b58g' => "8MpFel61KSinlDlU75c6Wq",
|
948
|
+
'hex' => "43fb11a64f174561a5e24edf5e7f70ec",
|
949
|
+
'dec' => "90361900206397293379905568386871947500"
|
950
|
+
},
|
951
|
+
{
|
952
|
+
'data' => "rachel@t136.foobar.com",
|
953
|
+
'b58f' => "pbSWqcABLnLtYhS6kQPcSP",
|
954
|
+
'b58g' => "NAosOBYZiLiRuGo5JmlBol",
|
955
|
+
'hex' => "bbc704c819e4b6523842c3c190927f87",
|
956
|
+
'dec' => "249598999269912237710431379880007597959"
|
957
|
+
},
|
958
|
+
{
|
959
|
+
'data' => "ray@t137.foobar.com",
|
960
|
+
'b58f' => "95eyDfggw9Cw5dwWwbpo58",
|
961
|
+
'b58g' => "84DWbEFFU8aU4CUsUANM47",
|
962
|
+
'hex' => "41607156c023aa16e8dfc420f1717f7f",
|
963
|
+
'dec' => "86900579009810301570872894709946220415"
|
964
|
+
},
|
965
|
+
{
|
966
|
+
'data' => "raymond@t138.foobar.com",
|
967
|
+
'b58f' => "6oJHke65wVydRwbmYnWtKD",
|
968
|
+
'b58g' => "5MgfJD54UrWCnUAKuLsRhb",
|
969
|
+
'hex' => "2baa60fa7ce0738ae7e32ec4466c3c6f",
|
970
|
+
'dec' => "58041461241712368594104913391262645359"
|
971
|
+
},
|
972
|
+
{
|
973
|
+
'data' => "rebecca@t139.foobar.com",
|
974
|
+
'b58f' => "qRjaoGKpyGT6SybfEH7wrJ",
|
975
|
+
'b58g' => "OnI9MehNWep5oWAEcf6UPg",
|
976
|
+
'hex' => "c93df71ab56001a9057f14305d02bacc",
|
977
|
+
'dec' => "267496569132375893769081822452341979852"
|
978
|
+
},
|
979
|
+
{
|
980
|
+
'data' => "richard@t140.foobar.com",
|
981
|
+
'b58f' => "fsXYuV8CYEAqix9P8F9KtS",
|
982
|
+
'b58g' => "EQtuSr7aucYOHV8l7d8hRo",
|
983
|
+
'hex' => "7523c647c4dc15b99cdd226a1994642c",
|
984
|
+
'dec' => "155705427500110065839201778387867952172"
|
985
|
+
},
|
986
|
+
{
|
987
|
+
'data' => "robert@t141.foobar.com",
|
988
|
+
'b58f' => "nWzK2fnDPjs2GFX145e3U1",
|
989
|
+
'b58g' => "LsXh1ELblIQ1edt034D2q0",
|
990
|
+
'hex' => "b1aede99a92ca602b0eb723719165bb8",
|
991
|
+
'dec' => "236181329776512988222964337690786814904"
|
992
|
+
},
|
993
|
+
{
|
994
|
+
'data' => "roman@t142.foobar.com",
|
995
|
+
'b58f' => "8pF4mTEVEfEfSNFj4bt635",
|
996
|
+
'b58g' => "7Nd3KpcrcEcEokdI3AR524",
|
997
|
+
'hex' => "3bfe25cb8c5071f61bb0250c65873be4",
|
998
|
+
'dec' => "79744061729275361834301801889884748772"
|
999
|
+
},
|
1000
|
+
{
|
1001
|
+
'data' => "romy@t143.foobar.com",
|
1002
|
+
'b58f' => "bz8Lfj6eSJZZ8PsCqzgiwd",
|
1003
|
+
'b58g' => "AX7iEI5Dogvv7lQaOXFHUC",
|
1004
|
+
'hex' => "559bb70da020d2c3dcdb1f81f61f87a4",
|
1005
|
+
'dec' => "113792898415271610928003522597612390308"
|
1006
|
+
},
|
1007
|
+
{
|
1008
|
+
'data' => "roscoe@t144.foobar.com",
|
1009
|
+
'b58f' => "g4Y22G4JMh5Mp6CWrahtLB",
|
1010
|
+
'b58g' => "F3u11e3gjG4jN5asP9GRiZ",
|
1011
|
+
'hex' => "7a06d557d0060c95b99cf0c514f61c17",
|
1012
|
+
'dec' => "162201296377386857034928268945927838743"
|
1013
|
+
},
|
1014
|
+
{
|
1015
|
+
'data' => "rose@t145.foobar.com",
|
1016
|
+
'b58f' => "9vEznJvECTphuW57y3shkk",
|
1017
|
+
'b58g' => "8TcXLgTcapNGSs46W2QGJJ",
|
1018
|
+
'hex' => "44ed73997d94678407f89adc3314b251",
|
1019
|
+
'dec' => "91620422706725354218226444709813072465"
|
1020
|
+
},
|
1021
|
+
{
|
1022
|
+
'data' => "ruby@t146.foobar.com",
|
1023
|
+
'b58f' => "qvdSAt8t8JfoeM1CvoyvZH",
|
1024
|
+
'b58g' => "OTCoYR7R7gEMDj0aTMWTvf",
|
1025
|
+
'hex' => "c66fd47be926c3d2112a0fc1fa9029a7",
|
1026
|
+
'dec' => "263767797804767543316400074206038993319"
|
1027
|
+
},
|
1028
|
+
{
|
1029
|
+
'data' => "rufus@t147.foobar.com",
|
1030
|
+
'b58f' => "fJ3hyQ76sX6QhjJQnxNoyH",
|
1031
|
+
'b58g' => "Eg2GWm65Qt5mGIgmLVkMWf",
|
1032
|
+
'hex' => "773e96909928390346ac28577b8005c1",
|
1033
|
+
'dec' => "158503107721329930763922762611428427201"
|
1034
|
+
},
|
1035
|
+
{
|
1036
|
+
'data' => "ruth@t148.foobar.com",
|
1037
|
+
'b58f' => "semaD6BpBCt2TEHes9FY13",
|
1038
|
+
'b58g' => "QDK9b5ZNZaR1pcfDQ8du02",
|
1039
|
+
'hex' => "d46ab3b85eebffc7a0a2d1e26191867a",
|
1040
|
+
'dec' => "282350363732084709434621454666838410874"
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
'data' => "sadie@t149.foobar.com",
|
1044
|
+
'b58f' => "UdfW5bmddDGjpFt1sZzk4",
|
1045
|
+
'b58g' => "qCEs4AKCCbeINdR0QvXJ3",
|
1046
|
+
'hex' => "74a3adee8c3573926fe9f037d12b1bd",
|
1047
|
+
'dec' => "9690019978471753031940629406309069245"
|
1048
|
+
},
|
1049
|
+
{
|
1050
|
+
'data' => "sally@t150.foobar.com",
|
1051
|
+
'b58f' => "eC6eFrxbYxSe8hzLN4aLRu",
|
1052
|
+
'b58g' => "Da5DdPVAuVoD7GXik39inS",
|
1053
|
+
'hex' => "6e50ce156f18e283dbbb5ef320c6ca3e",
|
1054
|
+
'dec' => "146634643159576217270381648173047663166"
|
1055
|
+
},
|
1056
|
+
{
|
1057
|
+
'data' => "samuel@t151.foobar.com",
|
1058
|
+
'b58f' => "cyBSm8hBKFDmxS6RTgyxTj",
|
1059
|
+
'b58g' => "BWZoK7GZhdbKVo5npFWVpI",
|
1060
|
+
'hex' => "5da26e2cdd29969686cadf888512418c",
|
1061
|
+
'dec' => "124461590318621834828071808136354349452"
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
'data' => "sarah@t152.foobar.com",
|
1065
|
+
'b58f' => "gEvas2eVntU1vMTLAc22ho",
|
1066
|
+
'b58g' => "FcT9Q1DrLRq0TjpiYB11GM",
|
1067
|
+
'hex' => "7ed950c0b12334f1a17c2edbe9b1f372",
|
1068
|
+
'dec' => "168611093746598361616080788269531526002"
|
1069
|
+
},
|
1070
|
+
{
|
1071
|
+
'data' => "scarlett@t153.foobar.com",
|
1072
|
+
'b58f' => "iHE5KNGu64ma8r9VHJAmaQ",
|
1073
|
+
'b58g' => "Hfc4hkeS53K97P8rfgYK9m",
|
1074
|
+
'hex' => "8f7c521602255cd5db9cc2808c7ebfda",
|
1075
|
+
'dec' => "190725113108972501879638462069934571482"
|
1076
|
+
},
|
1077
|
+
{
|
1078
|
+
'data' => "sebastian@t154.foobar.com",
|
1079
|
+
'b58f' => "bmymJQ3P3Na95Zea5eqnuQ",
|
1080
|
+
'b58g' => "AKWKgm2l2k984vD94DOLSm",
|
1081
|
+
'hex' => "53da33fb5b0492ab01551fe84bfe584c",
|
1082
|
+
'dec' => "111458898682635851406592604885200296012"
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
'data' => "silas@t155.foobar.com",
|
1086
|
+
'b58f' => "qTaWjwsxrgCMA1DRaawEtL",
|
1087
|
+
'b58g' => "Op9sIUQVPFajY0bn99UcRi",
|
1088
|
+
'hex' => "c980623b88c2a76409aaf0ad10e93142",
|
1089
|
+
'dec' => "267841433543588578020696435222863491394"
|
1090
|
+
},
|
1091
|
+
{
|
1092
|
+
'data' => "simon@t156.foobar.com",
|
1093
|
+
'b58f' => "4xbnT82V6YswZD8CADhToa",
|
1094
|
+
'b58g' => "3VALp71r5uQUvb7aYbGpM9",
|
1095
|
+
'hex' => "1ca5de39a4cd9a0720a2156a084c89c1",
|
1096
|
+
'dec' => "38079620125577263763554114897561029057"
|
1097
|
+
},
|
1098
|
+
{
|
1099
|
+
'data' => "sophia@t157.foobar.com",
|
1100
|
+
'b58f' => "uSsimYXiJfpyVTEniSgdeB",
|
1101
|
+
'b58g' => "SoQHKutHgENWrpcLHoFCDZ",
|
1102
|
+
'hex' => "e9cb474d5d2ff01535467f245707651d",
|
1103
|
+
'dec' => "310765605460658400448216219509680727325"
|
1104
|
+
},
|
1105
|
+
{
|
1106
|
+
'data' => "stella@t158.foobar.com",
|
1107
|
+
'b58f' => "uhsAzfPV38gccUsiNNp1Ci",
|
1108
|
+
'b58g' => "SGQYXElr27FBBqQHkkN0aH",
|
1109
|
+
'hex' => "e50c2c586ae05315b5a15ed78c57deb1",
|
1110
|
+
'dec' => "304456418028225617536818348891468979889"
|
1111
|
+
},
|
1112
|
+
{
|
1113
|
+
'data' => "stellan@t159.foobar.com",
|
1114
|
+
'b58f' => "qwmeRueNtTA6BG87X5qfVi",
|
1115
|
+
'b58g' => "OUKDnSDkRpY5Ze76t4OErH",
|
1116
|
+
'hex' => "c6981d132516862e25774f55c9826a6b",
|
1117
|
+
'dec' => "263976961994602405683735077164433959531"
|
1118
|
+
},
|
1119
|
+
{
|
1120
|
+
'data' => "stephen@t160.foobar.com",
|
1121
|
+
'b58f' => "p7LF1KEXBaqcEqqxxFdhLF",
|
1122
|
+
'b58g' => "N6id0hctZ9OBcOOVVdCGid",
|
1123
|
+
'hex' => "bb342eaa9d2aa25a8cf65fa9c7a03fcf",
|
1124
|
+
'dec' => "248836581156693162791581991481471156175"
|
1125
|
+
},
|
1126
|
+
{
|
1127
|
+
'data' => "sullivan@t161.foobar.com",
|
1128
|
+
'b58f' => "sjbpK5vVjj9HEmFuimqw9S",
|
1129
|
+
'b58g' => "QIANh4TrII8fcKdSHKOU8o",
|
1130
|
+
'hex' => "d51768739c130d07703a2a9dad9e915a",
|
1131
|
+
'dec' => "283247104460073543528770836461321621850"
|
1132
|
+
},
|
1133
|
+
{
|
1134
|
+
'data' => "susannah@t162.foobar.com",
|
1135
|
+
'b58f' => "wzzfj74UJdELhrLBC6qT32",
|
1136
|
+
'b58g' => "UXXEI63qgCciGPiZa5Op21",
|
1137
|
+
'hex' => "f7a231791c13bd78321a8d139b3a7ff1",
|
1138
|
+
'dec' => "329161470483324550450953150782053711857"
|
1139
|
+
},
|
1140
|
+
{
|
1141
|
+
'data' => "talullah@t163.foobar.com",
|
1142
|
+
'b58f' => "6Bv5sQYYGgEH8ocfpyVYEM",
|
1143
|
+
'b58g' => "5ZT4QmuueFcf7MBENWrucj",
|
1144
|
+
'hex' => "2d72a50182199590c72e1d7b46d8e151",
|
1145
|
+
'dec' => "60410528369270930395762843516837355857"
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
'data' => "theo@t164.foobar.com",
|
1149
|
+
'b58f' => "btE6gi4ouzPVVB8vHuuYTz",
|
1150
|
+
'b58g' => "ARc5FH3MSXlrrZ7TfSSupX",
|
1151
|
+
'hex' => "54d7f1518dd60dc9c4ec65211730ec0f",
|
1152
|
+
'dec' => "112776389992609726594994215312275074063"
|
1153
|
+
},
|
1154
|
+
{
|
1155
|
+
'data' => "theodore@t165.foobar.com",
|
1156
|
+
'b58f' => "inuCfNZXhBwqAd3eRdmucu",
|
1157
|
+
'b58g' => "HLSaEkvtGZUOYC2DnCKSBS",
|
1158
|
+
'hex' => "8cab9e02c40c2205b9da1b06f13ae44a",
|
1159
|
+
'dec' => "186983007012545109424372555279545066570"
|
1160
|
+
},
|
1161
|
+
{
|
1162
|
+
'data' => "thomas@t166.foobar.com",
|
1163
|
+
'b58f' => "xo71nBSArfgxTzjbiu2no1",
|
1164
|
+
'b58g' => "VM60LZoYPEFVpXIAHS1LM0",
|
1165
|
+
'hex' => "fe215ced0236e539c7e79636d7e04ef8",
|
1166
|
+
'dec' => "337797141485143667365331029065650425592"
|
1167
|
+
},
|
1168
|
+
{
|
1169
|
+
'data' => "timothy@t167.foobar.com",
|
1170
|
+
'b58f' => "mCpPnySkinUWyL42qxedyd",
|
1171
|
+
'b58g' => "KaNlLWoJHLqsWi31OVDCWC",
|
1172
|
+
'hex' => "a70c39fd05ea5713bf8e257fc45aceb4",
|
1173
|
+
'dec' => "222044559002286617861641427951453654708"
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
'data' => "victor@t168.foobar.com",
|
1177
|
+
'b58f' => "ktKMp7zpvznh9eJe5wpGDP",
|
1178
|
+
'b58g' => "JRhjN6XNTXLG8DgD4UNebl",
|
1179
|
+
'hex' => "9dbdb2ca2f9a0709779551c1ad188d69",
|
1180
|
+
'dec' => "209673765732225155615448460005033413993"
|
1181
|
+
},
|
1182
|
+
{
|
1183
|
+
'data' => "victoria@t169.foobar.com",
|
1184
|
+
'b58f' => "m2cfi3nqGKGsnaKKZi6Gng",
|
1185
|
+
'b58g' => "K1BEH2LOeheQL9hhvH5eLF",
|
1186
|
+
'hex' => "a22172a57eab4be79fa340d5b3523729",
|
1187
|
+
'dec' => "215508606420031847869033068723988215593"
|
1188
|
+
},
|
1189
|
+
{
|
1190
|
+
'data' => "vincent@t170.foobar.com",
|
1191
|
+
'b58f' => "4zxVvtDST2izRT5agTNDSq",
|
1192
|
+
'b58g' => "3XVrTRbop1HXnp49FpkboO",
|
1193
|
+
'hex' => "1cfaa2242135c8e1d1630a1ac6daaea0",
|
1194
|
+
'dec' => "38519746709459020464009922007057215136"
|
1195
|
+
},
|
1196
|
+
{
|
1197
|
+
'data' => "violet@t171.foobar.com",
|
1198
|
+
'b58f' => "mR6C6C3vTeQRW28PfarMW8",
|
1199
|
+
'b58g' => "Kn5a5a2TpDmns17lE9Pjs7",
|
1200
|
+
'hex' => "a8d1aece1f466995963533ee4df2ae0f",
|
1201
|
+
'dec' => "224399038805251317671013674797908536847"
|
1202
|
+
},
|
1203
|
+
{
|
1204
|
+
'data' => "virginia@t172.foobar.com",
|
1205
|
+
'b58f' => "sgC4TvD2PvgogA9hg9SXwf",
|
1206
|
+
'b58g' => "QFa3pTb1lTFMFY8GF8otUE",
|
1207
|
+
'hex' => "d4bbfd22b37099f79187cc22ce8be246",
|
1208
|
+
'dec' => "282772428817869370718468882166568444486"
|
1209
|
+
},
|
1210
|
+
{
|
1211
|
+
'data' => "walter@t173.foobar.com",
|
1212
|
+
'b58f' => "tmSRjaqamj5apt2SZ6Q1f1",
|
1213
|
+
'b58g' => "RKonI9O9KI49NR1ov5m0E0",
|
1214
|
+
'hex' => "dd90f4efe1ba9b65ff68223628b1949c",
|
1215
|
+
'dec' => "294512045729429276267590835002181522588"
|
1216
|
+
},
|
1217
|
+
{
|
1218
|
+
'data' => "william@t174.foobar.com",
|
1219
|
+
'b58f' => "3CxxK9U1RkWKczEon2nEWh",
|
1220
|
+
'b58g' => "2aVVh8q0nJshBXcML1LcsG",
|
1221
|
+
'hex' => "154c7ea8a83c4743276c0bce2fddfb9c",
|
1222
|
+
'dec' => "28310971418739596463586043480707562396"
|
1223
|
+
},
|
1224
|
+
{
|
1225
|
+
'data' => "zachary@t175.foobar.com",
|
1226
|
+
'b58f' => "6PWcERtfib8AGNLQk3SHVT",
|
1227
|
+
'b58g' => "5lsBcnREHA7YekimJ2ofrp",
|
1228
|
+
'hex' => "2f2f0d9c7f5637ee5cd17fa959b1efc9",
|
1229
|
+
'dec' => "62718029824569210616939637565157404617"
|
1230
|
+
}
|
1231
|
+
]
|
1232
|
+
|
1233
|
+
def test_flickr_gmp_transcoding
|
1234
|
+
MULTI_EXAMPLES.each do |test|
|
1235
|
+
assert_equal test['b58f'], Base58GMP.encode(test['dec'].to_i)
|
1236
|
+
assert_equal test['b58f'], Base58GMP.encode(GMP::Z(test['dec'].to_i))
|
1237
|
+
assert_equal test['b58f'], Base58GMP.encode(test['hex'].to_i(16))
|
1238
|
+
assert_equal test['b58f'], Base58GMP.encode(test['hex'],16)
|
1239
|
+
assert_equal test['dec'].to_i, Base58GMP.decode(test['b58f']).to_i
|
1240
|
+
assert_equal test['hex'] , Base58GMP.decode(test['b58f']).to_s(base=16)
|
1241
|
+
assert_equal test['b58g'], Base58GMP.encode(test['dec'].to_i,nil,'gmp')
|
1242
|
+
assert_equal test['b58g'], Base58GMP.encode(test['hex'].to_i(16),nil,'gmp')
|
1243
|
+
assert_equal test['b58g'], Base58GMP.encode(test['hex'],16,'gmp')
|
1244
|
+
assert_equal test['dec'].to_i, Base58GMP.decode(test['b58g'],'gmp').to_i
|
1245
|
+
assert_equal test['hex'] , Base58GMP.decode(test['b58g'],'gmp').to_s(base=16)
|
1246
|
+
assert_equal test['b58f'], Base58GMP.md5_base58(test['data'])
|
1247
|
+
assert_equal test['b58g'], Base58GMP.md5_base58(test['data'],'GMP')
|
1248
|
+
end
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
end
|