block_io 1.0.6 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +5 -5
  2. data/.appveyor.yml-disabled +26 -0
  3. data/.gitignore +5 -1
  4. data/.rspec +1 -0
  5. data/.travis.yml +14 -0
  6. data/LICENSE +1 -1
  7. data/README.md +22 -13
  8. data/block_io.gemspec +9 -8
  9. data/examples/basic.rb +38 -10
  10. data/examples/dtrust.rb +60 -42
  11. data/examples/proxy.rb +36 -0
  12. data/examples/sweeper.rb +24 -14
  13. data/lib/block_io.rb +16 -399
  14. data/lib/block_io/api_exception.rb +11 -0
  15. data/lib/block_io/chainparams/BTC.yml +8 -0
  16. data/lib/block_io/chainparams/BTCTEST.yml +8 -0
  17. data/lib/block_io/chainparams/DOGE.yml +8 -0
  18. data/lib/block_io/chainparams/DOGETEST.yml +8 -0
  19. data/lib/block_io/chainparams/LTC.yml +8 -0
  20. data/lib/block_io/chainparams/LTCTEST.yml +8 -0
  21. data/lib/block_io/client.rb +243 -0
  22. data/lib/block_io/extended_bitcoinrb.rb +127 -0
  23. data/lib/block_io/helper.rb +262 -0
  24. data/lib/block_io/key.rb +38 -0
  25. data/lib/block_io/version.rb +1 -1
  26. data/spec/client_misc_spec.rb +76 -0
  27. data/spec/client_spec.rb +68 -0
  28. data/spec/dtrust_spec.rb +167 -0
  29. data/spec/helper_spec.rb +44 -0
  30. data/spec/key_spec.rb +92 -0
  31. data/spec/larger_transaction_spec.rb +351 -0
  32. data/spec/spec_helper.rb +5 -0
  33. data/spec/sweep_spec.rb +115 -0
  34. data/spec/test-cases/.gitignore +2 -0
  35. data/spec/test-cases/LICENSE +21 -0
  36. data/spec/test-cases/README.md +2 -0
  37. data/spec/test-cases/json/create_and_sign_transaction_response.json +61 -0
  38. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json +1261 -0
  39. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json +1266 -0
  40. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json +1271 -0
  41. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json +3816 -0
  42. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2SH_3of5_195inputs.json +2931 -0
  43. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2SH_4of5_195inputs.json +5 -0
  44. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_251inputs.json +3771 -0
  45. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_252inputs.json +3786 -0
  46. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_253inputs.json +3801 -0
  47. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_251inputs.json +5 -0
  48. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_252inputs.json +5 -0
  49. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_253inputs.json +5 -0
  50. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_251inputs.json +3771 -0
  51. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_252inputs.json +3786 -0
  52. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_253inputs.json +3801 -0
  53. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_251inputs.json +5 -0
  54. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_252inputs.json +5 -0
  55. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_253inputs.json +5 -0
  56. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2sh_3_of_5_keys.json +21 -0
  57. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2sh_4_of_5_keys.json +5 -0
  58. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_3_of_5_keys.json +21 -0
  59. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_4_of_5_keys.json +5 -0
  60. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3_of_5_keys.json +36 -0
  61. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_251outputs.json +591 -0
  62. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_252outputs.json +576 -0
  63. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_253outputs.json +531 -0
  64. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4_of_5_keys.json +5 -0
  65. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_251outputs.json +5 -0
  66. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_252outputs.json +5 -0
  67. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_253outputs.json +5 -0
  68. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2pkh.json +5 -0
  69. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2wpkh.json +5 -0
  70. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2wpkh_over_p2sh.json +5 -0
  71. data/spec/test-cases/json/create_and_sign_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +21 -0
  72. data/spec/test-cases/json/get_balance_response.json +8 -0
  73. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2SH_3of5_195inputs.json +1397 -0
  74. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2SH_4of5_195inputs.json +1397 -0
  75. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_251inputs.json +1795 -0
  76. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_252inputs.json +1802 -0
  77. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_253inputs.json +1809 -0
  78. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_251inputs.json +1789 -0
  79. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_252inputs.json +1802 -0
  80. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_253inputs.json +1809 -0
  81. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_251inputs.json +1795 -0
  82. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_252inputs.json +1802 -0
  83. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_253inputs.json +1809 -0
  84. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_251inputs.json +1795 -0
  85. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_252inputs.json +1802 -0
  86. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_253inputs.json +1809 -0
  87. data/spec/test-cases/json/prepare_dtrust_transaction_response_p2sh.json +45 -0
  88. data/spec/test-cases/json/prepare_dtrust_transaction_response_p2wsh_over_p2sh.json +45 -0
  89. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0.json +52 -0
  90. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_251outputs.json +1805 -0
  91. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_252outputs.json +1804 -0
  92. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_253outputs.json +1789 -0
  93. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_251outputs.json +1805 -0
  94. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_252outputs.json +1804 -0
  95. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_253outputs.json +1789 -0
  96. data/spec/test-cases/json/prepare_sweep_transaction_response_p2pkh.json +35 -0
  97. data/spec/test-cases/json/prepare_sweep_transaction_response_p2wpkh.json +35 -0
  98. data/spec/test-cases/json/prepare_sweep_transaction_response_p2wpkh_over_p2sh.json +35 -0
  99. data/spec/test-cases/json/prepare_transaction_response.json +164 -0
  100. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json +1796 -0
  101. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json +1803 -0
  102. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json +1810 -0
  103. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json +5367 -0
  104. data/spec/test-cases/json/prepare_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +76 -0
  105. data/spec/test-cases/json/summarize_prepared_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +6 -0
  106. metadata +249 -43
@@ -0,0 +1,1789 @@
1
+ {
2
+ "status": "success",
3
+ "data": {
4
+ "network": "LTCTEST",
5
+ "tx_type": "dtrust",
6
+ "inputs": [
7
+ {
8
+ "input_index": 0,
9
+ "previous_txid": "0179acb21afcece653e78e3038b356942331104d4bc487abeb2cb86cf27fcb0e",
10
+ "previous_output_index": 2,
11
+ "input_value": "0.00138386",
12
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
13
+ },
14
+ {
15
+ "input_index": 1,
16
+ "previous_txid": "e0c0bd131f458949e7cfe3c3840785f57e722505841c7cae90a63509c8d05936",
17
+ "previous_output_index": 2,
18
+ "input_value": "0.00194425",
19
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
20
+ },
21
+ {
22
+ "input_index": 2,
23
+ "previous_txid": "87bb7aebe84becbaa3a81d11b205651ba308d0b4ba2318ea9b448ba6888a9151",
24
+ "previous_output_index": 2,
25
+ "input_value": "0.00152766",
26
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
27
+ },
28
+ {
29
+ "input_index": 3,
30
+ "previous_txid": "123288ec0f076929985544ac20ba99d4fc97295bc838dcf80e26a9259b38cf93",
31
+ "previous_output_index": 2,
32
+ "input_value": "0.00161915",
33
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
34
+ },
35
+ {
36
+ "input_index": 4,
37
+ "previous_txid": "1df67d9a98beab74f77517e6f9a78ee34fc71121c15e58f944b4b2a1f3088077",
38
+ "previous_output_index": 2,
39
+ "input_value": "0.00180821",
40
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
41
+ },
42
+ {
43
+ "input_index": 5,
44
+ "previous_txid": "1d86392edd3c308948674d82de8e8a332d66c0c51e52d221a2c93f2149c454d7",
45
+ "previous_output_index": 2,
46
+ "input_value": "0.00113059",
47
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
48
+ },
49
+ {
50
+ "input_index": 6,
51
+ "previous_txid": "7f11ed4d945874ddcdc9f30de8070d3e42349e7d053e61c917bf7a38c84c730a",
52
+ "previous_output_index": 2,
53
+ "input_value": "0.00179987",
54
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
55
+ },
56
+ {
57
+ "input_index": 7,
58
+ "previous_txid": "bb7b11434753715ce22d7101bb48e9a11d08a5e902be4b673b6706657ae43c73",
59
+ "previous_output_index": 2,
60
+ "input_value": "0.00140956",
61
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
62
+ },
63
+ {
64
+ "input_index": 8,
65
+ "previous_txid": "e6ef2dd2eaa73d64f4355ac4d5105e5c4124c58b2c147bc9a3aa2f8d17037125",
66
+ "previous_output_index": 2,
67
+ "input_value": "0.00116897",
68
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
69
+ },
70
+ {
71
+ "input_index": 9,
72
+ "previous_txid": "77a2eee81cbcaf2c8a62d9f7f773279fb6e4ea44e6045f493e2d3387c2dd2162",
73
+ "previous_output_index": 2,
74
+ "input_value": "0.00131112",
75
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
76
+ },
77
+ {
78
+ "input_index": 10,
79
+ "previous_txid": "c74d75eb3cf6aa201b792e20a1b36a596515b14a62d24e37c69bc2af882431d7",
80
+ "previous_output_index": 2,
81
+ "input_value": "0.00116146",
82
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
83
+ },
84
+ {
85
+ "input_index": 11,
86
+ "previous_txid": "f8f70e89665558ee0388336dcae699da0dda1ff8087df886cbb0dd0cda9b442c",
87
+ "previous_output_index": 2,
88
+ "input_value": "0.00188464",
89
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
90
+ },
91
+ {
92
+ "input_index": 12,
93
+ "previous_txid": "fd4bf9895fe91c46c2c7ac3e6d05a9a17624328f48237857cc217fd8756cb21b",
94
+ "previous_output_index": 2,
95
+ "input_value": "0.00128765",
96
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
97
+ },
98
+ {
99
+ "input_index": 13,
100
+ "previous_txid": "5b56cf63f70eca4e6ba23c9bf708ec863165b47f71a3b5b3bc29c57f40c430b0",
101
+ "previous_output_index": 2,
102
+ "input_value": "0.00128197",
103
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
104
+ },
105
+ {
106
+ "input_index": 14,
107
+ "previous_txid": "4e334cf8697ecac5844dc23629a052f1977d2e85b0303bd1d57185bf9553ebfc",
108
+ "previous_output_index": 2,
109
+ "input_value": "0.00150366",
110
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
111
+ },
112
+ {
113
+ "input_index": 15,
114
+ "previous_txid": "530c78652bd6716c3a86d8f468782a5b3dabf8c34197e2c9b27eb9a7be9990be",
115
+ "previous_output_index": 2,
116
+ "input_value": "0.00194686",
117
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
118
+ },
119
+ {
120
+ "input_index": 16,
121
+ "previous_txid": "2c659c046fe00e4deee88aad5a3fb5f468d06913ec359b288447080d1bd99e3b",
122
+ "previous_output_index": 2,
123
+ "input_value": "0.00173795",
124
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
125
+ },
126
+ {
127
+ "input_index": 17,
128
+ "previous_txid": "6618ce443e9236557f63828697c7544d77b5fd7b3d0ee3ebf46781cacd082ee4",
129
+ "previous_output_index": 2,
130
+ "input_value": "0.00192738",
131
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
132
+ },
133
+ {
134
+ "input_index": 18,
135
+ "previous_txid": "99987e4146b76d7a19b84e7d97d27f439e7c437613e0e8617ce34ad4618039b5",
136
+ "previous_output_index": 2,
137
+ "input_value": "0.00198423",
138
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
139
+ },
140
+ {
141
+ "input_index": 19,
142
+ "previous_txid": "b54fc674af54ca91cecee89587cf00082574ba3c092bd69f850b55bba866d803",
143
+ "previous_output_index": 2,
144
+ "input_value": "0.00156390",
145
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
146
+ },
147
+ {
148
+ "input_index": 20,
149
+ "previous_txid": "c4a6dc2846c0ddc4d27fee60080b8b4b8e12ec4586f60ce7fba9a9134280bddb",
150
+ "previous_output_index": 2,
151
+ "input_value": "0.00194427",
152
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
153
+ },
154
+ {
155
+ "input_index": 21,
156
+ "previous_txid": "7edf5a182eaa5e8f4dec30b51e1d40851fd9970088bee170ad713962e2f88de8",
157
+ "previous_output_index": 2,
158
+ "input_value": "0.00193025",
159
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
160
+ },
161
+ {
162
+ "input_index": 22,
163
+ "previous_txid": "efd9befb00af415e29de830bf5b0966c898ee7cf1280eb2f0d5fab5247390972",
164
+ "previous_output_index": 2,
165
+ "input_value": "0.00141057",
166
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
167
+ },
168
+ {
169
+ "input_index": 23,
170
+ "previous_txid": "ebb41430ab8a9dce2724f767a52a7686be8b977be078c520e5d861eff9776c43",
171
+ "previous_output_index": 2,
172
+ "input_value": "0.00129550",
173
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
174
+ },
175
+ {
176
+ "input_index": 24,
177
+ "previous_txid": "a1e53390ba168889bf1d6c18dde90bdee02fc215d2749d59c075d60af84394fb",
178
+ "previous_output_index": 2,
179
+ "input_value": "0.00163228",
180
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
181
+ },
182
+ {
183
+ "input_index": 25,
184
+ "previous_txid": "57994ec46bda43ea9c86977d55ee92e33838159590fe2904b96fa8dfd235a3ea",
185
+ "previous_output_index": 2,
186
+ "input_value": "0.00117867",
187
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
188
+ },
189
+ {
190
+ "input_index": 26,
191
+ "previous_txid": "4858a0d8eae59978495eec2b6c376e4838f9d19c657d9efe6e22dfa46f56482a",
192
+ "previous_output_index": 2,
193
+ "input_value": "0.00198300",
194
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
195
+ },
196
+ {
197
+ "input_index": 27,
198
+ "previous_txid": "615ee241923462031bbb2532d39b1043e080618745fd79a814844ac66619cbd5",
199
+ "previous_output_index": 2,
200
+ "input_value": "0.00188129",
201
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
202
+ },
203
+ {
204
+ "input_index": 28,
205
+ "previous_txid": "b424bbec597085948e13589f43df901e6da11741135dd5436f0ec6a3132141c3",
206
+ "previous_output_index": 2,
207
+ "input_value": "0.00178626",
208
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
209
+ },
210
+ {
211
+ "input_index": 29,
212
+ "previous_txid": "eefd344b87906da3906d30864f0b2cbed61f70ce7deaa27000c8ce5a3fd114d7",
213
+ "previous_output_index": 2,
214
+ "input_value": "0.00197580",
215
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
216
+ },
217
+ {
218
+ "input_index": 30,
219
+ "previous_txid": "1078c3be21ad703bab9d56e84e83b1ad63780fe3a05f80ef6bf1fda99f7b7724",
220
+ "previous_output_index": 2,
221
+ "input_value": "0.00181462",
222
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
223
+ },
224
+ {
225
+ "input_index": 31,
226
+ "previous_txid": "7add985a3dd08bb31880768e5c81e042c7a4fdecd19cf718e465bcf847e6de79",
227
+ "previous_output_index": 2,
228
+ "input_value": "0.00167244",
229
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
230
+ },
231
+ {
232
+ "input_index": 32,
233
+ "previous_txid": "5ac57c05b5dfaafeb43a3b938f16ac92eb93cd475e46e6f06a5fa53902590608",
234
+ "previous_output_index": 2,
235
+ "input_value": "0.00189772",
236
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
237
+ },
238
+ {
239
+ "input_index": 33,
240
+ "previous_txid": "002a58b14834721eb3b05132742c8b87523a0da7056bc97f7588e2166c914901",
241
+ "previous_output_index": 2,
242
+ "input_value": "0.00198350",
243
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
244
+ },
245
+ {
246
+ "input_index": 34,
247
+ "previous_txid": "bf16c68627e554284bfe892df45c29956ed1aa12a2cc6bba19b4a8f5d3ca3758",
248
+ "previous_output_index": 2,
249
+ "input_value": "0.00177651",
250
+ "spending_address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl"
251
+ }
252
+ ],
253
+ "outputs": [
254
+ {
255
+ "output_index": 0,
256
+ "output_category": "user-specified",
257
+ "output_value": "0.00020000",
258
+ "receiving_address": "QekTicyAmMTDpNez9LCVjJzhaPtNoqtJoR"
259
+ },
260
+ {
261
+ "output_index": 1,
262
+ "output_category": "user-specified",
263
+ "output_value": "0.00020000",
264
+ "receiving_address": "QgARBz4xvmHpiR1Xiy2iY9sNkMRu5u44mx"
265
+ },
266
+ {
267
+ "output_index": 2,
268
+ "output_category": "user-specified",
269
+ "output_value": "0.00020000",
270
+ "receiving_address": "QLr1JDzerKcQcvMXkd5jC7ntPziUGErabc"
271
+ },
272
+ {
273
+ "output_index": 3,
274
+ "output_category": "user-specified",
275
+ "output_value": "0.00020000",
276
+ "receiving_address": "QfymZUBd8GA6jDLUiDZ9ncyDYmRHrxEaaa"
277
+ },
278
+ {
279
+ "output_index": 4,
280
+ "output_category": "user-specified",
281
+ "output_value": "0.00020000",
282
+ "receiving_address": "QaQuvJHBGVsos9sjN7zC4Tf3DuMZMwwsy4"
283
+ },
284
+ {
285
+ "output_index": 5,
286
+ "output_category": "user-specified",
287
+ "output_value": "0.00020000",
288
+ "receiving_address": "QUfj97wve5BfmvMcQw8aKKRgMGod1dmE7k"
289
+ },
290
+ {
291
+ "output_index": 6,
292
+ "output_category": "user-specified",
293
+ "output_value": "0.00020000",
294
+ "receiving_address": "QNkE1Z7nAHke1j1cNUFzktekSf68hnRihH"
295
+ },
296
+ {
297
+ "output_index": 7,
298
+ "output_category": "user-specified",
299
+ "output_value": "0.00020000",
300
+ "receiving_address": "QPuV3mMXsVxaaHXBjpejeHXRZ6EtbjTrWV"
301
+ },
302
+ {
303
+ "output_index": 8,
304
+ "output_category": "user-specified",
305
+ "output_value": "0.00020000",
306
+ "receiving_address": "QPaCAZnGAuE3ySrQKRTNUzAmLFRsLgZVEK"
307
+ },
308
+ {
309
+ "output_index": 9,
310
+ "output_category": "user-specified",
311
+ "output_value": "0.00020000",
312
+ "receiving_address": "QVgvRRAWjq4r6RJx9enmEQaRMqWagKsHPP"
313
+ },
314
+ {
315
+ "output_index": 10,
316
+ "output_category": "user-specified",
317
+ "output_value": "0.00020000",
318
+ "receiving_address": "Qi3PYjibSbs5d3Mv6mXqg1jFT6J6M79WEt"
319
+ },
320
+ {
321
+ "output_index": 11,
322
+ "output_category": "user-specified",
323
+ "output_value": "0.00020000",
324
+ "receiving_address": "QLja5iX9qo7tbpAygiZTzzRZ8tb4t7SrTz"
325
+ },
326
+ {
327
+ "output_index": 12,
328
+ "output_category": "user-specified",
329
+ "output_value": "0.00020000",
330
+ "receiving_address": "Qaf5FLDWU38HQoYyh9KVkGErqownQdVaS9"
331
+ },
332
+ {
333
+ "output_index": 13,
334
+ "output_category": "user-specified",
335
+ "output_value": "0.00020000",
336
+ "receiving_address": "Qgg7RLPh3agBC3EXSMHxsdYVjd6S5vAimg"
337
+ },
338
+ {
339
+ "output_index": 14,
340
+ "output_category": "user-specified",
341
+ "output_value": "0.00020000",
342
+ "receiving_address": "QPhV3u84CnLRQPnDMPrz8PnNhrJDMwCjjS"
343
+ },
344
+ {
345
+ "output_index": 15,
346
+ "output_category": "user-specified",
347
+ "output_value": "0.00020000",
348
+ "receiving_address": "QPy2DYEDmvjpdXL6NuR5CLxphggrwjFBZM"
349
+ },
350
+ {
351
+ "output_index": 16,
352
+ "output_category": "user-specified",
353
+ "output_value": "0.00020000",
354
+ "receiving_address": "QfXUeP1tq2RTfQu38hCHBSDru9AgsPgwFE"
355
+ },
356
+ {
357
+ "output_index": 17,
358
+ "output_category": "user-specified",
359
+ "output_value": "0.00020000",
360
+ "receiving_address": "QdfP9h292K69YH8K6mPA5NKmKJLNNc1QJv"
361
+ },
362
+ {
363
+ "output_index": 18,
364
+ "output_category": "user-specified",
365
+ "output_value": "0.00020000",
366
+ "receiving_address": "QaYg6RL2We6NrujGqwfM3ZNpzAqHJC2yCz"
367
+ },
368
+ {
369
+ "output_index": 19,
370
+ "output_category": "user-specified",
371
+ "output_value": "0.00020000",
372
+ "receiving_address": "QevS2UAwKiASjcQUEkHP4gcJrQg684Wj9t"
373
+ },
374
+ {
375
+ "output_index": 20,
376
+ "output_category": "user-specified",
377
+ "output_value": "0.00020000",
378
+ "receiving_address": "QNazsPvLZ6CGMprYYf9soqUtwyV9dJ6tjH"
379
+ },
380
+ {
381
+ "output_index": 21,
382
+ "output_category": "user-specified",
383
+ "output_value": "0.00020000",
384
+ "receiving_address": "QQavAkhAZG739mvuXCsWLjWjcj4KaUbaso"
385
+ },
386
+ {
387
+ "output_index": 22,
388
+ "output_category": "user-specified",
389
+ "output_value": "0.00020000",
390
+ "receiving_address": "QgYfzcEQLn2UVHdzVuKsyctsJocCPAia2q"
391
+ },
392
+ {
393
+ "output_index": 23,
394
+ "output_category": "user-specified",
395
+ "output_value": "0.00020000",
396
+ "receiving_address": "Qhqqys6pfMBspyj4b2qbSRHJdMcbM8zog4"
397
+ },
398
+ {
399
+ "output_index": 24,
400
+ "output_category": "user-specified",
401
+ "output_value": "0.00020000",
402
+ "receiving_address": "QNn199HMswgwoVCnfBJWZizKmLy91BjJNX"
403
+ },
404
+ {
405
+ "output_index": 25,
406
+ "output_category": "user-specified",
407
+ "output_value": "0.00020000",
408
+ "receiving_address": "QbFHmmuJ7iNnk3L9kmUdsBdwqUK33LB3NF"
409
+ },
410
+ {
411
+ "output_index": 26,
412
+ "output_category": "user-specified",
413
+ "output_value": "0.00020000",
414
+ "receiving_address": "QbsTUyazkiWsT6Y6G8H59KHZDvd2Bk3qa7"
415
+ },
416
+ {
417
+ "output_index": 27,
418
+ "output_category": "user-specified",
419
+ "output_value": "0.00020000",
420
+ "receiving_address": "QSMTn1Ss1JTvF4jhWqHdxBVZpAbiojNaLA"
421
+ },
422
+ {
423
+ "output_index": 28,
424
+ "output_category": "user-specified",
425
+ "output_value": "0.00020000",
426
+ "receiving_address": "QWTZUEqKt61DEQFgLHBdZPooK6X9QwcGAK"
427
+ },
428
+ {
429
+ "output_index": 29,
430
+ "output_category": "user-specified",
431
+ "output_value": "0.00020000",
432
+ "receiving_address": "QMipgaaWWnZan49J6wn9pVF53FdVVJvViz"
433
+ },
434
+ {
435
+ "output_index": 30,
436
+ "output_category": "user-specified",
437
+ "output_value": "0.00020000",
438
+ "receiving_address": "QcqAaXSVHm3q1dxt1F8cX2KPsNjM55zzaf"
439
+ },
440
+ {
441
+ "output_index": 31,
442
+ "output_category": "user-specified",
443
+ "output_value": "0.00020000",
444
+ "receiving_address": "QR2ctbghaBNiTFwXhxFZxKi8jJT1NdEybY"
445
+ },
446
+ {
447
+ "output_index": 32,
448
+ "output_category": "user-specified",
449
+ "output_value": "0.00020000",
450
+ "receiving_address": "Qin8gfwzFzRAGu8EytErZtqS9zEXcjLxEZ"
451
+ },
452
+ {
453
+ "output_index": 33,
454
+ "output_category": "user-specified",
455
+ "output_value": "0.00020000",
456
+ "receiving_address": "QiqA8wwCD5SrKAomdnkFqnhcDs1Ls2JALK"
457
+ },
458
+ {
459
+ "output_index": 34,
460
+ "output_category": "user-specified",
461
+ "output_value": "0.00020000",
462
+ "receiving_address": "QTongpSsepDGWehfi8MBC7FokV8ohXrkyZ"
463
+ },
464
+ {
465
+ "output_index": 35,
466
+ "output_category": "user-specified",
467
+ "output_value": "0.00020000",
468
+ "receiving_address": "Qb82VKWnjpAVCppmWJdx2rLt9ekR3W6LwZ"
469
+ },
470
+ {
471
+ "output_index": 36,
472
+ "output_category": "user-specified",
473
+ "output_value": "0.00020000",
474
+ "receiving_address": "Qf9jhKjhfq5kZ5NVwnjyec7bFJTjHz947e"
475
+ },
476
+ {
477
+ "output_index": 37,
478
+ "output_category": "user-specified",
479
+ "output_value": "0.00020000",
480
+ "receiving_address": "QNygHP3GGXq86DsTi4sSHDfGY3gbLkrnom"
481
+ },
482
+ {
483
+ "output_index": 38,
484
+ "output_category": "user-specified",
485
+ "output_value": "0.00020000",
486
+ "receiving_address": "Qe9D7Pd6Q7iMmvmdyS5FTw8a9pBV6RdWn6"
487
+ },
488
+ {
489
+ "output_index": 39,
490
+ "output_category": "user-specified",
491
+ "output_value": "0.00020000",
492
+ "receiving_address": "QeTTr6ww5W5iviqQcy9BUtFDvkgEx8ATFt"
493
+ },
494
+ {
495
+ "output_index": 40,
496
+ "output_category": "user-specified",
497
+ "output_value": "0.00020000",
498
+ "receiving_address": "QU4dx7UYoLLBAioEs3mihMbGLHTXwX1Dat"
499
+ },
500
+ {
501
+ "output_index": 41,
502
+ "output_category": "user-specified",
503
+ "output_value": "0.00020000",
504
+ "receiving_address": "QVBgHkY5oQeWtPHxQaPxiMUG2MTZEgdq5u"
505
+ },
506
+ {
507
+ "output_index": 42,
508
+ "output_category": "user-specified",
509
+ "output_value": "0.00020000",
510
+ "receiving_address": "QaBdbGuaQym9mVvdYQsH7uxVfsSfohkWGZ"
511
+ },
512
+ {
513
+ "output_index": 43,
514
+ "output_category": "user-specified",
515
+ "output_value": "0.00020000",
516
+ "receiving_address": "QWkpvAvBpkkAKYN7YG34zaLBRsPgWvTWTm"
517
+ },
518
+ {
519
+ "output_index": 44,
520
+ "output_category": "user-specified",
521
+ "output_value": "0.00020000",
522
+ "receiving_address": "QN3ivx5EtyDENT4wMZpgPhaRVp1N7LUDvB"
523
+ },
524
+ {
525
+ "output_index": 45,
526
+ "output_category": "user-specified",
527
+ "output_value": "0.00020000",
528
+ "receiving_address": "QieSAt9WmfD791Gjm7KqyxnXap1znJfih2"
529
+ },
530
+ {
531
+ "output_index": 46,
532
+ "output_category": "user-specified",
533
+ "output_value": "0.00020000",
534
+ "receiving_address": "QaxDfB2NiHYSjQ6Ut4TWwcWqgJMYD2CDEF"
535
+ },
536
+ {
537
+ "output_index": 47,
538
+ "output_category": "user-specified",
539
+ "output_value": "0.00020000",
540
+ "receiving_address": "QbfQAiVRh8AVoCWVGmMczr9Yf1TF4yvmLc"
541
+ },
542
+ {
543
+ "output_index": 48,
544
+ "output_category": "user-specified",
545
+ "output_value": "0.00020000",
546
+ "receiving_address": "QUJz4hEZf3XYfiNRUxNmzaf6xCacDPXorK"
547
+ },
548
+ {
549
+ "output_index": 49,
550
+ "output_category": "user-specified",
551
+ "output_value": "0.00020000",
552
+ "receiving_address": "QaScpGBN9FUXXFsEqb2PKXTFznr5TtyksW"
553
+ },
554
+ {
555
+ "output_index": 50,
556
+ "output_category": "user-specified",
557
+ "output_value": "0.00020000",
558
+ "receiving_address": "QW5V9GJY5jvXGVPj3EzReNuHyiEc7iuFC3"
559
+ },
560
+ {
561
+ "output_index": 51,
562
+ "output_category": "user-specified",
563
+ "output_value": "0.00020000",
564
+ "receiving_address": "QYfAfbwNe9Cs3FzUq8Jbs4kh191wtDNzjZ"
565
+ },
566
+ {
567
+ "output_index": 52,
568
+ "output_category": "user-specified",
569
+ "output_value": "0.00020000",
570
+ "receiving_address": "QQvWSfDfNjRTDGp4uuJVFCoxRf4dkb5uJs"
571
+ },
572
+ {
573
+ "output_index": 53,
574
+ "output_category": "user-specified",
575
+ "output_value": "0.00020000",
576
+ "receiving_address": "QUm9rN7pUdAJkDLZZDwgoe8PgKjKnGYBAQ"
577
+ },
578
+ {
579
+ "output_index": 54,
580
+ "output_category": "user-specified",
581
+ "output_value": "0.00020000",
582
+ "receiving_address": "QU7Rvns8uW2jYHDF2PZA6hqyfVZ3sNro6J"
583
+ },
584
+ {
585
+ "output_index": 55,
586
+ "output_category": "user-specified",
587
+ "output_value": "0.00020000",
588
+ "receiving_address": "QUS5DGDmjiKpq69LMRG5bZepRZxRTSfb7r"
589
+ },
590
+ {
591
+ "output_index": 56,
592
+ "output_category": "user-specified",
593
+ "output_value": "0.00020000",
594
+ "receiving_address": "Qem5X5i6aa3Sskrv1hsKJ5R6d3mXX9WgZm"
595
+ },
596
+ {
597
+ "output_index": 57,
598
+ "output_category": "user-specified",
599
+ "output_value": "0.00020000",
600
+ "receiving_address": "QRPyKnCqE4EJAERGDy5dt4tzgrowCRfaGE"
601
+ },
602
+ {
603
+ "output_index": 58,
604
+ "output_category": "user-specified",
605
+ "output_value": "0.00020000",
606
+ "receiving_address": "QfPRAmXYhPGrxVsrta2ve6xjSpajC95PJn"
607
+ },
608
+ {
609
+ "output_index": 59,
610
+ "output_category": "user-specified",
611
+ "output_value": "0.00020000",
612
+ "receiving_address": "QMuyTgG91mCY1D6gs9MRm8mAeFFR8t6N9v"
613
+ },
614
+ {
615
+ "output_index": 60,
616
+ "output_category": "user-specified",
617
+ "output_value": "0.00020000",
618
+ "receiving_address": "QicHH2ufB6CHfWAGLiuyEddYzdDosqW82s"
619
+ },
620
+ {
621
+ "output_index": 61,
622
+ "output_category": "user-specified",
623
+ "output_value": "0.00020000",
624
+ "receiving_address": "QNW7ZQqNXvrT4VWbhYiqHJ7GEhZ4mNHjHt"
625
+ },
626
+ {
627
+ "output_index": 62,
628
+ "output_category": "user-specified",
629
+ "output_value": "0.00020000",
630
+ "receiving_address": "QZg6p9VoAymuXuWdiEDCAQm9wmaky5GteK"
631
+ },
632
+ {
633
+ "output_index": 63,
634
+ "output_category": "user-specified",
635
+ "output_value": "0.00020000",
636
+ "receiving_address": "Qbb4aanMyxsGNx99SnKju95TRqhj5VMLAB"
637
+ },
638
+ {
639
+ "output_index": 64,
640
+ "output_category": "user-specified",
641
+ "output_value": "0.00020000",
642
+ "receiving_address": "QYYLkdg78uEA25rmNkZYuv623qRQWDh8Rv"
643
+ },
644
+ {
645
+ "output_index": 65,
646
+ "output_category": "user-specified",
647
+ "output_value": "0.00020000",
648
+ "receiving_address": "QZTJchmTVeLnwddzGnB29eAgiD7mvh1RD1"
649
+ },
650
+ {
651
+ "output_index": 66,
652
+ "output_category": "user-specified",
653
+ "output_value": "0.00020000",
654
+ "receiving_address": "QVf8nAoNVnvGTJtwabD7suWTLSo3Y7wPx6"
655
+ },
656
+ {
657
+ "output_index": 67,
658
+ "output_category": "user-specified",
659
+ "output_value": "0.00020000",
660
+ "receiving_address": "QMDqgUi4z4WZRWuYWYVLEyG7Q9TEWeT7ZH"
661
+ },
662
+ {
663
+ "output_index": 68,
664
+ "output_category": "user-specified",
665
+ "output_value": "0.00020000",
666
+ "receiving_address": "QZFnFAwohTifZnYXZn7fnf59kv9gVwpwW9"
667
+ },
668
+ {
669
+ "output_index": 69,
670
+ "output_category": "user-specified",
671
+ "output_value": "0.00020000",
672
+ "receiving_address": "QQk7sWShxnCmre4hHDz9dW9zNnSwH5VZ9Y"
673
+ },
674
+ {
675
+ "output_index": 70,
676
+ "output_category": "user-specified",
677
+ "output_value": "0.00020000",
678
+ "receiving_address": "QWjTfu6FuGbrtuQusYkBsA1hnQMeRR9bpC"
679
+ },
680
+ {
681
+ "output_index": 71,
682
+ "output_category": "user-specified",
683
+ "output_value": "0.00020000",
684
+ "receiving_address": "QXsmhTK1E8eAVB5BWiJCgC8EbfJKhfYsGQ"
685
+ },
686
+ {
687
+ "output_index": 72,
688
+ "output_category": "user-specified",
689
+ "output_value": "0.00020000",
690
+ "receiving_address": "QdTcSGxh2PMrzb79EexKatbm7YjATQFc9F"
691
+ },
692
+ {
693
+ "output_index": 73,
694
+ "output_category": "user-specified",
695
+ "output_value": "0.00020000",
696
+ "receiving_address": "QhrMqEPDJkixmg67Zqzz3z3i2ymZucBi7H"
697
+ },
698
+ {
699
+ "output_index": 74,
700
+ "output_category": "user-specified",
701
+ "output_value": "0.00020000",
702
+ "receiving_address": "QWkvNLTmtWQg8bUcYa8Q7o7Vu9njTiUDJz"
703
+ },
704
+ {
705
+ "output_index": 75,
706
+ "output_category": "user-specified",
707
+ "output_value": "0.00020000",
708
+ "receiving_address": "QQyTgNcv7YeQA2jwwdGqMuyE9YtS1e3kg5"
709
+ },
710
+ {
711
+ "output_index": 76,
712
+ "output_category": "user-specified",
713
+ "output_value": "0.00020000",
714
+ "receiving_address": "QejqmQJuSG4Y17kU9CdA3dbaYPRPmrvAQx"
715
+ },
716
+ {
717
+ "output_index": 77,
718
+ "output_category": "user-specified",
719
+ "output_value": "0.00020000",
720
+ "receiving_address": "QQR6mJBxpGhFTbxaLeVUvws6fpajnsgUj2"
721
+ },
722
+ {
723
+ "output_index": 78,
724
+ "output_category": "user-specified",
725
+ "output_value": "0.00020000",
726
+ "receiving_address": "QZba7axZ46SryxpeyJ6if3Ptj9yz88pbR4"
727
+ },
728
+ {
729
+ "output_index": 79,
730
+ "output_category": "user-specified",
731
+ "output_value": "0.00020000",
732
+ "receiving_address": "QcEsCruXBrwYsbqqmWCJCvqTDzNzhiJiyh"
733
+ },
734
+ {
735
+ "output_index": 80,
736
+ "output_category": "user-specified",
737
+ "output_value": "0.00020000",
738
+ "receiving_address": "QTQxA2QTTbdHn9dSf7axX3dz4GuasZJvk3"
739
+ },
740
+ {
741
+ "output_index": 81,
742
+ "output_category": "user-specified",
743
+ "output_value": "0.00020000",
744
+ "receiving_address": "QVHPtgtHDrSuP8SyNdA5p6Lhe2q1vSk7zQ"
745
+ },
746
+ {
747
+ "output_index": 82,
748
+ "output_category": "user-specified",
749
+ "output_value": "0.00020000",
750
+ "receiving_address": "Qc1k7JNADwbhDR1ds66CvDQHvGSLxfDvRf"
751
+ },
752
+ {
753
+ "output_index": 83,
754
+ "output_category": "user-specified",
755
+ "output_value": "0.00020000",
756
+ "receiving_address": "QhcBcGLxDrBEHGChRD7DohES534c5G8ATU"
757
+ },
758
+ {
759
+ "output_index": 84,
760
+ "output_category": "user-specified",
761
+ "output_value": "0.00020000",
762
+ "receiving_address": "QbTXmbGad5iMNXzu7KxEwvuVtpsE6R8HCM"
763
+ },
764
+ {
765
+ "output_index": 85,
766
+ "output_category": "user-specified",
767
+ "output_value": "0.00020000",
768
+ "receiving_address": "QZAtEd7YH5L3d5oVUn9nsUjuZmcV9LWkQ9"
769
+ },
770
+ {
771
+ "output_index": 86,
772
+ "output_category": "user-specified",
773
+ "output_value": "0.00020000",
774
+ "receiving_address": "Qc9UuDJWx69ri2EXU9By5WVpozPPKmtg5o"
775
+ },
776
+ {
777
+ "output_index": 87,
778
+ "output_category": "user-specified",
779
+ "output_value": "0.00020000",
780
+ "receiving_address": "QVbJwLoCQMEFMD2sgYHyFfYYAR7v4PGVYW"
781
+ },
782
+ {
783
+ "output_index": 88,
784
+ "output_category": "user-specified",
785
+ "output_value": "0.00020000",
786
+ "receiving_address": "QNfmvkYykd3McNYY3ERufpHu5H7Zce6dbn"
787
+ },
788
+ {
789
+ "output_index": 89,
790
+ "output_category": "user-specified",
791
+ "output_value": "0.00020000",
792
+ "receiving_address": "Qj4WYpCwCSXrv63qXN2pKZmKBunT7rY2fq"
793
+ },
794
+ {
795
+ "output_index": 90,
796
+ "output_category": "user-specified",
797
+ "output_value": "0.00020000",
798
+ "receiving_address": "Qj1hrY9TbncXGHCQye9b8CCnE2AAGuGBsK"
799
+ },
800
+ {
801
+ "output_index": 91,
802
+ "output_category": "user-specified",
803
+ "output_value": "0.00020000",
804
+ "receiving_address": "QRJsWECXXkZSDvY8TxLtYSsWeJAVTdU6np"
805
+ },
806
+ {
807
+ "output_index": 92,
808
+ "output_category": "user-specified",
809
+ "output_value": "0.00020000",
810
+ "receiving_address": "QXjv8oGJDxFmYFY52emwXit3a1kNz6rcMk"
811
+ },
812
+ {
813
+ "output_index": 93,
814
+ "output_category": "user-specified",
815
+ "output_value": "0.00020000",
816
+ "receiving_address": "QP45REaYdyzYcx8k3EuRb1z4xMa5h2B2fa"
817
+ },
818
+ {
819
+ "output_index": 94,
820
+ "output_category": "user-specified",
821
+ "output_value": "0.00020000",
822
+ "receiving_address": "Qh6oRFaRrvFur7i93f5ZZEhNtS8E2R2AyZ"
823
+ },
824
+ {
825
+ "output_index": 95,
826
+ "output_category": "user-specified",
827
+ "output_value": "0.00020000",
828
+ "receiving_address": "QW9Yfm3FvSdFLhNJb15KCVSGBqKeEXXMjW"
829
+ },
830
+ {
831
+ "output_index": 96,
832
+ "output_category": "user-specified",
833
+ "output_value": "0.00020000",
834
+ "receiving_address": "QXQ1kton3W5RNVUvUM6zosk3LiMmLsUr43"
835
+ },
836
+ {
837
+ "output_index": 97,
838
+ "output_category": "user-specified",
839
+ "output_value": "0.00020000",
840
+ "receiving_address": "QY7KTUe7oGFnDu2pYKNyXMXXFKY2dD8q6g"
841
+ },
842
+ {
843
+ "output_index": 98,
844
+ "output_category": "user-specified",
845
+ "output_value": "0.00020000",
846
+ "receiving_address": "QbG4fygfEjgewboakRzEn68PkPnxpt4voK"
847
+ },
848
+ {
849
+ "output_index": 99,
850
+ "output_category": "user-specified",
851
+ "output_value": "0.00020000",
852
+ "receiving_address": "QgB5gyZN8r4K6PKopJPpu1kYNBzspoKaPj"
853
+ },
854
+ {
855
+ "output_index": 100,
856
+ "output_category": "user-specified",
857
+ "output_value": "0.00020000",
858
+ "receiving_address": "QXqBecPpZ92aBphNWUJvFYFUWafbhnT9xc"
859
+ },
860
+ {
861
+ "output_index": 101,
862
+ "output_category": "user-specified",
863
+ "output_value": "0.00020000",
864
+ "receiving_address": "QcrNdAPe6N7ygX9asSww19HZZGkasMaTie"
865
+ },
866
+ {
867
+ "output_index": 102,
868
+ "output_category": "user-specified",
869
+ "output_value": "0.00020000",
870
+ "receiving_address": "QPj1wBULFKd96aMCYxJq7B2cguqHNUHY7k"
871
+ },
872
+ {
873
+ "output_index": 103,
874
+ "output_category": "user-specified",
875
+ "output_value": "0.00020000",
876
+ "receiving_address": "Qa4QofhdvoBbYUGbqSSPZ5Cj3eQDDd4GuC"
877
+ },
878
+ {
879
+ "output_index": 104,
880
+ "output_category": "user-specified",
881
+ "output_value": "0.00020000",
882
+ "receiving_address": "QWzNgNwinguZ3p6Lvb3QZSvEP4TvDs7rHo"
883
+ },
884
+ {
885
+ "output_index": 105,
886
+ "output_category": "user-specified",
887
+ "output_value": "0.00020000",
888
+ "receiving_address": "QZbqpdKTyQpovaCAgENUrZPzu7hXNYcYU7"
889
+ },
890
+ {
891
+ "output_index": 106,
892
+ "output_category": "user-specified",
893
+ "output_value": "0.00020000",
894
+ "receiving_address": "QjQadhQTH3GKziYobkLFsjrM5rpiFuQEuh"
895
+ },
896
+ {
897
+ "output_index": 107,
898
+ "output_category": "user-specified",
899
+ "output_value": "0.00020000",
900
+ "receiving_address": "QhHDdGr6BYwvUixtfRAxLTJNVixQ8Dso8L"
901
+ },
902
+ {
903
+ "output_index": 108,
904
+ "output_category": "user-specified",
905
+ "output_value": "0.00020000",
906
+ "receiving_address": "QSkpa8Zcf25RNbgQHv38XeB9ZeUi2kGzG4"
907
+ },
908
+ {
909
+ "output_index": 109,
910
+ "output_category": "user-specified",
911
+ "output_value": "0.00020000",
912
+ "receiving_address": "QSmRVjBDmARk6okp8qpLFGeAU6D4G8R968"
913
+ },
914
+ {
915
+ "output_index": 110,
916
+ "output_category": "user-specified",
917
+ "output_value": "0.00020000",
918
+ "receiving_address": "QPrZBr2UdPFHi7vb7wVSt8npLwNAtyFaU3"
919
+ },
920
+ {
921
+ "output_index": 111,
922
+ "output_category": "user-specified",
923
+ "output_value": "0.00020000",
924
+ "receiving_address": "QZm5ft1PxVhk81cRFUtEbsF7NeunUW3MBx"
925
+ },
926
+ {
927
+ "output_index": 112,
928
+ "output_category": "user-specified",
929
+ "output_value": "0.00020000",
930
+ "receiving_address": "QQBZ22VnfjAVMdv4xCEFBuUoSaLEWNZdLd"
931
+ },
932
+ {
933
+ "output_index": 113,
934
+ "output_category": "user-specified",
935
+ "output_value": "0.00020000",
936
+ "receiving_address": "Qi3wy85iWUknK1LLkV23PgTs3ZNe1GHKmh"
937
+ },
938
+ {
939
+ "output_index": 114,
940
+ "output_category": "user-specified",
941
+ "output_value": "0.00020000",
942
+ "receiving_address": "QUnq3ce6ZqNqjyGZrXUNbHb5f64DrzJgzr"
943
+ },
944
+ {
945
+ "output_index": 115,
946
+ "output_category": "user-specified",
947
+ "output_value": "0.00020000",
948
+ "receiving_address": "QRp5DgztnHnqcPbRKtSe86ip3Z1T5iVTfM"
949
+ },
950
+ {
951
+ "output_index": 116,
952
+ "output_category": "user-specified",
953
+ "output_value": "0.00020000",
954
+ "receiving_address": "QfutQXb95Nj8HERKpdc2N8apsqCqcCgJkL"
955
+ },
956
+ {
957
+ "output_index": 117,
958
+ "output_category": "user-specified",
959
+ "output_value": "0.00020000",
960
+ "receiving_address": "Qhch51KY3kAseqi5rh2XSmDYhaBMdnn8EF"
961
+ },
962
+ {
963
+ "output_index": 118,
964
+ "output_category": "user-specified",
965
+ "output_value": "0.00020000",
966
+ "receiving_address": "QQLYsGZF58Cg3M7hXvbhZcVYEu1WeRMpG3"
967
+ },
968
+ {
969
+ "output_index": 119,
970
+ "output_category": "user-specified",
971
+ "output_value": "0.00020000",
972
+ "receiving_address": "Qj9wGuq5kMPrKutWZob9zAQ7nYnU9bybeW"
973
+ },
974
+ {
975
+ "output_index": 120,
976
+ "output_category": "user-specified",
977
+ "output_value": "0.00020000",
978
+ "receiving_address": "QZkZAEhpTx4zbWNrmXwePQo7rP85KhHoHr"
979
+ },
980
+ {
981
+ "output_index": 121,
982
+ "output_category": "user-specified",
983
+ "output_value": "0.00020000",
984
+ "receiving_address": "QUUCfawWKt6qUVUQZXNLhcA4Zf1PZTwPhS"
985
+ },
986
+ {
987
+ "output_index": 122,
988
+ "output_category": "user-specified",
989
+ "output_value": "0.00020000",
990
+ "receiving_address": "QiaubHDhW1mmQA7vkrPcdM6hSm3oCe1fVX"
991
+ },
992
+ {
993
+ "output_index": 123,
994
+ "output_category": "user-specified",
995
+ "output_value": "0.00020000",
996
+ "receiving_address": "QhTXRS3iRhabccAaQcmhYNq36SHWQUMTCD"
997
+ },
998
+ {
999
+ "output_index": 124,
1000
+ "output_category": "user-specified",
1001
+ "output_value": "0.00020000",
1002
+ "receiving_address": "QPCA6rcDU5pRPBpPFKyBGwqkozQKe94H5L"
1003
+ },
1004
+ {
1005
+ "output_index": 125,
1006
+ "output_category": "user-specified",
1007
+ "output_value": "0.00020000",
1008
+ "receiving_address": "Qfj4VEATPYr8qgmtkMJJwHTCp6PpJKEaj3"
1009
+ },
1010
+ {
1011
+ "output_index": 126,
1012
+ "output_category": "user-specified",
1013
+ "output_value": "0.00020000",
1014
+ "receiving_address": "QcsNUYDAXimewNCJgS7L5ZoxF23fMQLScN"
1015
+ },
1016
+ {
1017
+ "output_index": 127,
1018
+ "output_category": "user-specified",
1019
+ "output_value": "0.00020000",
1020
+ "receiving_address": "QTNREpFPQNjE432eqSg58LGzjBkMNVT7br"
1021
+ },
1022
+ {
1023
+ "output_index": 128,
1024
+ "output_category": "user-specified",
1025
+ "output_value": "0.00020000",
1026
+ "receiving_address": "QZm6Ef5WUWbVVEnzGFjX8yoL7fKGWs8szZ"
1027
+ },
1028
+ {
1029
+ "output_index": 129,
1030
+ "output_category": "user-specified",
1031
+ "output_value": "0.00020000",
1032
+ "receiving_address": "QdCKmht6V6S9CDeTvkg2W7eR8JAepVvQxk"
1033
+ },
1034
+ {
1035
+ "output_index": 130,
1036
+ "output_category": "user-specified",
1037
+ "output_value": "0.00020000",
1038
+ "receiving_address": "QZ98zChVnD83MpJS8Hd7LcCTFE9DqzQeVo"
1039
+ },
1040
+ {
1041
+ "output_index": 131,
1042
+ "output_category": "user-specified",
1043
+ "output_value": "0.00020000",
1044
+ "receiving_address": "QeRa1BmxV1uYb8y8zU1s8K8g7SG72iFjTa"
1045
+ },
1046
+ {
1047
+ "output_index": 132,
1048
+ "output_category": "user-specified",
1049
+ "output_value": "0.00020000",
1050
+ "receiving_address": "QRQCfNjFuqGVGgpQDefm4YHHUKBvUrVzB8"
1051
+ },
1052
+ {
1053
+ "output_index": 133,
1054
+ "output_category": "user-specified",
1055
+ "output_value": "0.00020000",
1056
+ "receiving_address": "QjLrMX961gbLbWJGZi8mhG44zzbukEhJGz"
1057
+ },
1058
+ {
1059
+ "output_index": 134,
1060
+ "output_category": "user-specified",
1061
+ "output_value": "0.00020000",
1062
+ "receiving_address": "QYDJ64izo5kRnY3JJWacRaz1bZHGNr7H8r"
1063
+ },
1064
+ {
1065
+ "output_index": 135,
1066
+ "output_category": "user-specified",
1067
+ "output_value": "0.00020000",
1068
+ "receiving_address": "QVariE9UjXtqbqGCZosCdgTyMviGLw1ByE"
1069
+ },
1070
+ {
1071
+ "output_index": 136,
1072
+ "output_category": "user-specified",
1073
+ "output_value": "0.00020000",
1074
+ "receiving_address": "QUaaSgv4Ye3C2ZHYpmwGsYfW6qzoq3bYDD"
1075
+ },
1076
+ {
1077
+ "output_index": 137,
1078
+ "output_category": "user-specified",
1079
+ "output_value": "0.00020000",
1080
+ "receiving_address": "QYB3CySYfAyHqmcvaceg6UzNPpZUBoYNHP"
1081
+ },
1082
+ {
1083
+ "output_index": 138,
1084
+ "output_category": "user-specified",
1085
+ "output_value": "0.00020000",
1086
+ "receiving_address": "QWm94j1Ys8vijniW8u5YWudmAWS3tHEXs9"
1087
+ },
1088
+ {
1089
+ "output_index": 139,
1090
+ "output_category": "user-specified",
1091
+ "output_value": "0.00020000",
1092
+ "receiving_address": "QXfx5ev4yJNQQSu3E8jMnWyAkA3NYUpbia"
1093
+ },
1094
+ {
1095
+ "output_index": 140,
1096
+ "output_category": "user-specified",
1097
+ "output_value": "0.00020000",
1098
+ "receiving_address": "QWWbKdah6HLuuVx94jqiN8T9H779VR4D7X"
1099
+ },
1100
+ {
1101
+ "output_index": 141,
1102
+ "output_category": "user-specified",
1103
+ "output_value": "0.00020000",
1104
+ "receiving_address": "QgAC2nYK9fQ62Gfn7R2eL7eRpK4RvVHmEr"
1105
+ },
1106
+ {
1107
+ "output_index": 142,
1108
+ "output_category": "user-specified",
1109
+ "output_value": "0.00020000",
1110
+ "receiving_address": "QY6iQXB8qncyguwBrqrCx1YTisgnrDHaS4"
1111
+ },
1112
+ {
1113
+ "output_index": 143,
1114
+ "output_category": "user-specified",
1115
+ "output_value": "0.00020000",
1116
+ "receiving_address": "QYeeBxfWLWqBmZ8H77EWztk1Jvgb8jR5nN"
1117
+ },
1118
+ {
1119
+ "output_index": 144,
1120
+ "output_category": "user-specified",
1121
+ "output_value": "0.00020000",
1122
+ "receiving_address": "QN1AmfsnYMjYtuydBfWUMY73prLjvuCxoW"
1123
+ },
1124
+ {
1125
+ "output_index": 145,
1126
+ "output_category": "user-specified",
1127
+ "output_value": "0.00020000",
1128
+ "receiving_address": "QMCSavgVwfAoNDuaNA1SEkHXgPiKMoB2Jd"
1129
+ },
1130
+ {
1131
+ "output_index": 146,
1132
+ "output_category": "user-specified",
1133
+ "output_value": "0.00020000",
1134
+ "receiving_address": "QTfz4zwoZNWSCJ1QQCQFnGgWX2ciHLKEyG"
1135
+ },
1136
+ {
1137
+ "output_index": 147,
1138
+ "output_category": "user-specified",
1139
+ "output_value": "0.00020000",
1140
+ "receiving_address": "QZZNDUhZUjoWyNGwzHACH6KQB3jisaJbtG"
1141
+ },
1142
+ {
1143
+ "output_index": 148,
1144
+ "output_category": "user-specified",
1145
+ "output_value": "0.00020000",
1146
+ "receiving_address": "QUyvU4zC3vpLEVwe1rZPTu1eXmL6jEDF9k"
1147
+ },
1148
+ {
1149
+ "output_index": 149,
1150
+ "output_category": "user-specified",
1151
+ "output_value": "0.00020000",
1152
+ "receiving_address": "QhSpvPxmNqNZKFe9YdvKfv45zUwQ3q5hh2"
1153
+ },
1154
+ {
1155
+ "output_index": 150,
1156
+ "output_category": "user-specified",
1157
+ "output_value": "0.00020000",
1158
+ "receiving_address": "QQ1JUJGSh4sKZd75ocNdESoPPpa6mErBWg"
1159
+ },
1160
+ {
1161
+ "output_index": 151,
1162
+ "output_category": "user-specified",
1163
+ "output_value": "0.00020000",
1164
+ "receiving_address": "QSeZeyREULYyjgDgxorZzdqhXuwbYV4ksG"
1165
+ },
1166
+ {
1167
+ "output_index": 152,
1168
+ "output_category": "user-specified",
1169
+ "output_value": "0.00020000",
1170
+ "receiving_address": "QLrVqQNRynxihUvqaBX1mBouQmp9Pmi29E"
1171
+ },
1172
+ {
1173
+ "output_index": 153,
1174
+ "output_category": "user-specified",
1175
+ "output_value": "0.00020000",
1176
+ "receiving_address": "QSvz375xA13J77yS63Kbpvypj8buyaKVNX"
1177
+ },
1178
+ {
1179
+ "output_index": 154,
1180
+ "output_category": "user-specified",
1181
+ "output_value": "0.00020000",
1182
+ "receiving_address": "QNunS41uHZXxC3iuoAzDU1cCEwCPF7HhU1"
1183
+ },
1184
+ {
1185
+ "output_index": 155,
1186
+ "output_category": "user-specified",
1187
+ "output_value": "0.00020000",
1188
+ "receiving_address": "QiuhzVVanfYT6MDVeoeWA69BjMeGumQVCs"
1189
+ },
1190
+ {
1191
+ "output_index": 156,
1192
+ "output_category": "user-specified",
1193
+ "output_value": "0.00020000",
1194
+ "receiving_address": "QdBbDRuUvT6LeUUgGXvR1kGzxjLXjjLjm3"
1195
+ },
1196
+ {
1197
+ "output_index": 157,
1198
+ "output_category": "user-specified",
1199
+ "output_value": "0.00020000",
1200
+ "receiving_address": "QNHZiPAkNyMUSYt64YtZuDJN5gdMczxsqX"
1201
+ },
1202
+ {
1203
+ "output_index": 158,
1204
+ "output_category": "user-specified",
1205
+ "output_value": "0.00020000",
1206
+ "receiving_address": "QebhsHXjnnGSKCbKuFZEx1qEB8YGN8A5Co"
1207
+ },
1208
+ {
1209
+ "output_index": 159,
1210
+ "output_category": "user-specified",
1211
+ "output_value": "0.00020000",
1212
+ "receiving_address": "QbsSfahPxHe2mPErGnsZDJgK4B91ySjTpN"
1213
+ },
1214
+ {
1215
+ "output_index": 160,
1216
+ "output_category": "user-specified",
1217
+ "output_value": "0.00020000",
1218
+ "receiving_address": "QgBtKS1RdVDUyvMjKNdEtMutmPmtZxe3pp"
1219
+ },
1220
+ {
1221
+ "output_index": 161,
1222
+ "output_category": "user-specified",
1223
+ "output_value": "0.00020000",
1224
+ "receiving_address": "QgRx5BpYtwUoem45sppQA8FbgSnVDjNJ8n"
1225
+ },
1226
+ {
1227
+ "output_index": 162,
1228
+ "output_category": "user-specified",
1229
+ "output_value": "0.00020000",
1230
+ "receiving_address": "QU8dkGyDvWk8zzYugeXqL9tFLn8SmBmWed"
1231
+ },
1232
+ {
1233
+ "output_index": 163,
1234
+ "output_category": "user-specified",
1235
+ "output_value": "0.00020000",
1236
+ "receiving_address": "QS4Mtw1FJQRwJhBeMj4ETPYWRN5mYpTE8F"
1237
+ },
1238
+ {
1239
+ "output_index": 164,
1240
+ "output_category": "user-specified",
1241
+ "output_value": "0.00020000",
1242
+ "receiving_address": "QhV8R9E8iFZ6a1hhTs7BYSKkcKA58jUw3H"
1243
+ },
1244
+ {
1245
+ "output_index": 165,
1246
+ "output_category": "user-specified",
1247
+ "output_value": "0.00020000",
1248
+ "receiving_address": "QZbbbxvu8ZRQ5rZ8jSa2gCFSSz6NA6o8aZ"
1249
+ },
1250
+ {
1251
+ "output_index": 166,
1252
+ "output_category": "user-specified",
1253
+ "output_value": "0.00020000",
1254
+ "receiving_address": "QWhmTVqApk7jGNgKwwZAKWwLbsadM9tMhg"
1255
+ },
1256
+ {
1257
+ "output_index": 167,
1258
+ "output_category": "user-specified",
1259
+ "output_value": "0.00020000",
1260
+ "receiving_address": "Qc64UV3mZTiLjL3P1unesqvfxbzew7TrKz"
1261
+ },
1262
+ {
1263
+ "output_index": 168,
1264
+ "output_category": "user-specified",
1265
+ "output_value": "0.00020000",
1266
+ "receiving_address": "QcPLZjAHuxQnL6MAiQcUkxcm6WN6WEk2Lk"
1267
+ },
1268
+ {
1269
+ "output_index": 169,
1270
+ "output_category": "user-specified",
1271
+ "output_value": "0.00020000",
1272
+ "receiving_address": "QMKFYdMincbtBMEdQywLVE1DbVGownhW4U"
1273
+ },
1274
+ {
1275
+ "output_index": 170,
1276
+ "output_category": "user-specified",
1277
+ "output_value": "0.00020000",
1278
+ "receiving_address": "Qa2yT9kVjW43A7JFeBtPA3PHeMUUJ3QQux"
1279
+ },
1280
+ {
1281
+ "output_index": 171,
1282
+ "output_category": "user-specified",
1283
+ "output_value": "0.00020000",
1284
+ "receiving_address": "QYWrrtXw7R54ntD36LUZsWKRGrjDkffJXM"
1285
+ },
1286
+ {
1287
+ "output_index": 172,
1288
+ "output_category": "user-specified",
1289
+ "output_value": "0.00020000",
1290
+ "receiving_address": "QVStaXppVWg8ZhukpYv4AraJYycS2bW4uq"
1291
+ },
1292
+ {
1293
+ "output_index": 173,
1294
+ "output_category": "user-specified",
1295
+ "output_value": "0.00020000",
1296
+ "receiving_address": "QdGoSRAUs4UtLpBxx366q7Hkyk6UbJ4fjj"
1297
+ },
1298
+ {
1299
+ "output_index": 174,
1300
+ "output_category": "user-specified",
1301
+ "output_value": "0.00020000",
1302
+ "receiving_address": "QeHWWabKXkcg7daLY1pnBjfty5o8eXYmeT"
1303
+ },
1304
+ {
1305
+ "output_index": 175,
1306
+ "output_category": "user-specified",
1307
+ "output_value": "0.00020000",
1308
+ "receiving_address": "QUw8H443wmPUFGA6qFqyLRufyMWzKug4Zw"
1309
+ },
1310
+ {
1311
+ "output_index": 176,
1312
+ "output_category": "user-specified",
1313
+ "output_value": "0.00020000",
1314
+ "receiving_address": "QRpnSvHtCt58eGRmMJv3tkuatForM6xDEJ"
1315
+ },
1316
+ {
1317
+ "output_index": 177,
1318
+ "output_category": "user-specified",
1319
+ "output_value": "0.00020000",
1320
+ "receiving_address": "QTEZ2GmVKohXot2rK5PCWvCirrzpvR2hQy"
1321
+ },
1322
+ {
1323
+ "output_index": 178,
1324
+ "output_category": "user-specified",
1325
+ "output_value": "0.00020000",
1326
+ "receiving_address": "Qe22MsMAt2xh4yvaMLnMbygJQySSFVnpUH"
1327
+ },
1328
+ {
1329
+ "output_index": 179,
1330
+ "output_category": "user-specified",
1331
+ "output_value": "0.00020000",
1332
+ "receiving_address": "QMcNYQ9hwoL4k5Mo7SD3ZYGX7aVhgZ2p3x"
1333
+ },
1334
+ {
1335
+ "output_index": 180,
1336
+ "output_category": "user-specified",
1337
+ "output_value": "0.00020000",
1338
+ "receiving_address": "QSuBR3otgz6SGZfqKaJCTR2P7EG8Z7haq4"
1339
+ },
1340
+ {
1341
+ "output_index": 181,
1342
+ "output_category": "user-specified",
1343
+ "output_value": "0.00020000",
1344
+ "receiving_address": "QaZ9hCQP5T9YJFGsLBKcW7iqkzqjZmH8P8"
1345
+ },
1346
+ {
1347
+ "output_index": 182,
1348
+ "output_category": "user-specified",
1349
+ "output_value": "0.00020000",
1350
+ "receiving_address": "QjKQCpVQXyz3GmAwgAZP3h7ZvVke27NU9d"
1351
+ },
1352
+ {
1353
+ "output_index": 183,
1354
+ "output_category": "user-specified",
1355
+ "output_value": "0.00020000",
1356
+ "receiving_address": "QePPVrHNVHafG8NHTF3SPXq1gdFg7DLK5W"
1357
+ },
1358
+ {
1359
+ "output_index": 184,
1360
+ "output_category": "user-specified",
1361
+ "output_value": "0.00020000",
1362
+ "receiving_address": "QYm1UVDNgWakJt9erwkCDiDtS5j5Beeh8n"
1363
+ },
1364
+ {
1365
+ "output_index": 185,
1366
+ "output_category": "user-specified",
1367
+ "output_value": "0.00020000",
1368
+ "receiving_address": "QNgdxgY27hAeJHWmqxZSS7NjmqG3x22bEH"
1369
+ },
1370
+ {
1371
+ "output_index": 186,
1372
+ "output_category": "user-specified",
1373
+ "output_value": "0.00020000",
1374
+ "receiving_address": "QbuyePj2i2137Uy2Upq9T35L9o73WuvZoW"
1375
+ },
1376
+ {
1377
+ "output_index": 187,
1378
+ "output_category": "user-specified",
1379
+ "output_value": "0.00020000",
1380
+ "receiving_address": "QZrLcqpyqhyevoZMAac8jXdhy8iNJwYeKt"
1381
+ },
1382
+ {
1383
+ "output_index": 188,
1384
+ "output_category": "user-specified",
1385
+ "output_value": "0.00020000",
1386
+ "receiving_address": "QchivtXJDCAH4y77ARnK7g1BLm1XoWnatk"
1387
+ },
1388
+ {
1389
+ "output_index": 189,
1390
+ "output_category": "user-specified",
1391
+ "output_value": "0.00020000",
1392
+ "receiving_address": "QQMHKd43eCHDfMFF3hn5SR9yjSGdj1LFJa"
1393
+ },
1394
+ {
1395
+ "output_index": 190,
1396
+ "output_category": "user-specified",
1397
+ "output_value": "0.00020000",
1398
+ "receiving_address": "QQaD7xtzC3ydnVFPr5ws5r1jHjGxKNapot"
1399
+ },
1400
+ {
1401
+ "output_index": 191,
1402
+ "output_category": "user-specified",
1403
+ "output_value": "0.00020000",
1404
+ "receiving_address": "QgFf9KXWNb4CKWwwBTaXoEVZJvgQQLAxGW"
1405
+ },
1406
+ {
1407
+ "output_index": 192,
1408
+ "output_category": "user-specified",
1409
+ "output_value": "0.00020000",
1410
+ "receiving_address": "QVtTPF53yKgvogR3PjyoVhmkejfpnc3ebn"
1411
+ },
1412
+ {
1413
+ "output_index": 193,
1414
+ "output_category": "user-specified",
1415
+ "output_value": "0.00020000",
1416
+ "receiving_address": "QXoJfCqNtbHw6nHxMNwTKeyNChZGys9oqY"
1417
+ },
1418
+ {
1419
+ "output_index": 194,
1420
+ "output_category": "user-specified",
1421
+ "output_value": "0.00020000",
1422
+ "receiving_address": "QNsdFzrCJYJgpStg4D8sN4a7Mp7woBEsfS"
1423
+ },
1424
+ {
1425
+ "output_index": 195,
1426
+ "output_category": "user-specified",
1427
+ "output_value": "0.00020000",
1428
+ "receiving_address": "QTBEeLYeSk9svqBUuN331Cs59LAiu8na21"
1429
+ },
1430
+ {
1431
+ "output_index": 196,
1432
+ "output_category": "user-specified",
1433
+ "output_value": "0.00020000",
1434
+ "receiving_address": "QREV6hWvq3cRbd47RVJasbzc6aWoH5bUCF"
1435
+ },
1436
+ {
1437
+ "output_index": 197,
1438
+ "output_category": "user-specified",
1439
+ "output_value": "0.00020000",
1440
+ "receiving_address": "QgcXde5uNSignmb819QjBk9D1BJHMzmY1s"
1441
+ },
1442
+ {
1443
+ "output_index": 198,
1444
+ "output_category": "user-specified",
1445
+ "output_value": "0.00020000",
1446
+ "receiving_address": "QN46uUDGNQ1rRN2p5g2hffRxoYNk9HeWZJ"
1447
+ },
1448
+ {
1449
+ "output_index": 199,
1450
+ "output_category": "user-specified",
1451
+ "output_value": "0.00020000",
1452
+ "receiving_address": "QVXekmGJ2BVcJNgfZqTtrmA8t8DZrdtLqT"
1453
+ },
1454
+ {
1455
+ "output_index": 200,
1456
+ "output_category": "user-specified",
1457
+ "output_value": "0.00020000",
1458
+ "receiving_address": "Qgg3gXF471vxdEqj9zeTiidmSbpYx44iMg"
1459
+ },
1460
+ {
1461
+ "output_index": 201,
1462
+ "output_category": "user-specified",
1463
+ "output_value": "0.00020000",
1464
+ "receiving_address": "QRZ1j79RnTW5sm9VEXig9byPHLQYjp4Cnh"
1465
+ },
1466
+ {
1467
+ "output_index": 202,
1468
+ "output_category": "user-specified",
1469
+ "output_value": "0.00020000",
1470
+ "receiving_address": "QYmoZsrRgMLet9sv88U2m2PiFPW3VF6ZSP"
1471
+ },
1472
+ {
1473
+ "output_index": 203,
1474
+ "output_category": "user-specified",
1475
+ "output_value": "0.00020000",
1476
+ "receiving_address": "QRAF7Y7s1jmMU8S9cxbuFAhWUTJWYwNAC9"
1477
+ },
1478
+ {
1479
+ "output_index": 204,
1480
+ "output_category": "user-specified",
1481
+ "output_value": "0.00020000",
1482
+ "receiving_address": "QhQbz5v9orCnWCbBTNxxjwii6ST7PgQ6N3"
1483
+ },
1484
+ {
1485
+ "output_index": 205,
1486
+ "output_category": "user-specified",
1487
+ "output_value": "0.00020000",
1488
+ "receiving_address": "QTZwGHPKWSph9YArvhKbFCgcWSmLHc4Utz"
1489
+ },
1490
+ {
1491
+ "output_index": 206,
1492
+ "output_category": "user-specified",
1493
+ "output_value": "0.00020000",
1494
+ "receiving_address": "QVpZfqa9rPLaq7kLY7JUG6jKx3ieqGtwXK"
1495
+ },
1496
+ {
1497
+ "output_index": 207,
1498
+ "output_category": "user-specified",
1499
+ "output_value": "0.00020000",
1500
+ "receiving_address": "QU4kQH5Uk9fgTGDWuYuER3mSBNt2aB5NFo"
1501
+ },
1502
+ {
1503
+ "output_index": 208,
1504
+ "output_category": "user-specified",
1505
+ "output_value": "0.00020000",
1506
+ "receiving_address": "QjNFc29N6wahFfN8cpoKRvtsjuyK1aaoZ5"
1507
+ },
1508
+ {
1509
+ "output_index": 209,
1510
+ "output_category": "user-specified",
1511
+ "output_value": "0.00020000",
1512
+ "receiving_address": "QYm56JX11rLDiZ3H9F7w6RFeqH3cAU9Npq"
1513
+ },
1514
+ {
1515
+ "output_index": 210,
1516
+ "output_category": "user-specified",
1517
+ "output_value": "0.00020000",
1518
+ "receiving_address": "QQ7ihKxhELpPUrrbsFFL3astkpCkhZo4kk"
1519
+ },
1520
+ {
1521
+ "output_index": 211,
1522
+ "output_category": "user-specified",
1523
+ "output_value": "0.00020000",
1524
+ "receiving_address": "QfPCNPXa2o4U3mWYte14PqJd8GVTcTH89V"
1525
+ },
1526
+ {
1527
+ "output_index": 212,
1528
+ "output_category": "user-specified",
1529
+ "output_value": "0.00020000",
1530
+ "receiving_address": "QNfwfE9jrnaCjd2B9VBijnaD1t4f4z5jcV"
1531
+ },
1532
+ {
1533
+ "output_index": 213,
1534
+ "output_category": "user-specified",
1535
+ "output_value": "0.00020000",
1536
+ "receiving_address": "QY8N3TqePSC9QqfDtWgFJoGgzzWye8jbb7"
1537
+ },
1538
+ {
1539
+ "output_index": 214,
1540
+ "output_category": "user-specified",
1541
+ "output_value": "0.00020000",
1542
+ "receiving_address": "QgdzPMzyRJjp43AuQZt3zUSeP5gZMwy65w"
1543
+ },
1544
+ {
1545
+ "output_index": 215,
1546
+ "output_category": "user-specified",
1547
+ "output_value": "0.00020000",
1548
+ "receiving_address": "QUVXgUkucPDiMxBEgFCZts2s9HorrzH4oo"
1549
+ },
1550
+ {
1551
+ "output_index": 216,
1552
+ "output_category": "user-specified",
1553
+ "output_value": "0.00020000",
1554
+ "receiving_address": "QchUhoJZwicoXrNmxeoZpvcwBaGSpE1Nfh"
1555
+ },
1556
+ {
1557
+ "output_index": 217,
1558
+ "output_category": "user-specified",
1559
+ "output_value": "0.00020000",
1560
+ "receiving_address": "QNKrHRVfxR3JWbUxDqyWKndn82HXiNVmja"
1561
+ },
1562
+ {
1563
+ "output_index": 218,
1564
+ "output_category": "user-specified",
1565
+ "output_value": "0.00020000",
1566
+ "receiving_address": "QXxndSmu6cnQLEia6a5HMkSeZ2QPfJdyaS"
1567
+ },
1568
+ {
1569
+ "output_index": 219,
1570
+ "output_category": "user-specified",
1571
+ "output_value": "0.00020000",
1572
+ "receiving_address": "QerKxLPhQeRwHw74YUPDZEevpYrY9JxWoS"
1573
+ },
1574
+ {
1575
+ "output_index": 220,
1576
+ "output_category": "user-specified",
1577
+ "output_value": "0.00020000",
1578
+ "receiving_address": "QMS63eHHF6R7eKb8RmUkboiWKfdbowjEuz"
1579
+ },
1580
+ {
1581
+ "output_index": 221,
1582
+ "output_category": "user-specified",
1583
+ "output_value": "0.00020000",
1584
+ "receiving_address": "QQRQbNUXkdvViA4Aq1ZWWkfAAmDfrVbHyM"
1585
+ },
1586
+ {
1587
+ "output_index": 222,
1588
+ "output_category": "user-specified",
1589
+ "output_value": "0.00020000",
1590
+ "receiving_address": "Qia1SzC3eprHuLzsbaJ9eBSC2yETG6YiFZ"
1591
+ },
1592
+ {
1593
+ "output_index": 223,
1594
+ "output_category": "user-specified",
1595
+ "output_value": "0.00020000",
1596
+ "receiving_address": "QRd3bF4o8ztXydpcrkviouyEUQKqLKPoef"
1597
+ },
1598
+ {
1599
+ "output_index": 224,
1600
+ "output_category": "user-specified",
1601
+ "output_value": "0.00020000",
1602
+ "receiving_address": "QhpzoTEvHQT8iZfdPJSjgdMPeR5yX1QSdA"
1603
+ },
1604
+ {
1605
+ "output_index": 225,
1606
+ "output_category": "user-specified",
1607
+ "output_value": "0.00020000",
1608
+ "receiving_address": "QNsbxUiSgSiHmJkafJyXo62YokTXLuUZPP"
1609
+ },
1610
+ {
1611
+ "output_index": 226,
1612
+ "output_category": "user-specified",
1613
+ "output_value": "0.00020000",
1614
+ "receiving_address": "QcWDmoQBRWVkUPGqy6VpWiAEv8TjGR2xfR"
1615
+ },
1616
+ {
1617
+ "output_index": 227,
1618
+ "output_category": "user-specified",
1619
+ "output_value": "0.00020000",
1620
+ "receiving_address": "QbLAdDGwrjuEpwjAsZxKMVQsWKVGcMjzCo"
1621
+ },
1622
+ {
1623
+ "output_index": 228,
1624
+ "output_category": "user-specified",
1625
+ "output_value": "0.00020000",
1626
+ "receiving_address": "QMwwCLwnraX3JpwZdZ9B7FRYZyWrdaHWUC"
1627
+ },
1628
+ {
1629
+ "output_index": 229,
1630
+ "output_category": "user-specified",
1631
+ "output_value": "0.00020000",
1632
+ "receiving_address": "QizCQBB4t1cmvZUe1pfR7bprezuZyvvjv1"
1633
+ },
1634
+ {
1635
+ "output_index": 230,
1636
+ "output_category": "user-specified",
1637
+ "output_value": "0.00020000",
1638
+ "receiving_address": "QWmzuUHB1U2m3qgSYX3jTYcnsvE8dnqgJ2"
1639
+ },
1640
+ {
1641
+ "output_index": 231,
1642
+ "output_category": "user-specified",
1643
+ "output_value": "0.00020000",
1644
+ "receiving_address": "QTXDT2jLueCZnT8taN6gLXut1bPzexWVee"
1645
+ },
1646
+ {
1647
+ "output_index": 232,
1648
+ "output_category": "user-specified",
1649
+ "output_value": "0.00020000",
1650
+ "receiving_address": "Qg4FQPX12fM3WgqgjEdapMztPUbvJVuArg"
1651
+ },
1652
+ {
1653
+ "output_index": 233,
1654
+ "output_category": "user-specified",
1655
+ "output_value": "0.00020000",
1656
+ "receiving_address": "QWSjNKNtUPRbMM9vvyH64hxfPxxbcN4pkA"
1657
+ },
1658
+ {
1659
+ "output_index": 234,
1660
+ "output_category": "user-specified",
1661
+ "output_value": "0.00020000",
1662
+ "receiving_address": "QcyZEHAfPeLt5JCP6irdT4v8Pz7RRr9Lj3"
1663
+ },
1664
+ {
1665
+ "output_index": 235,
1666
+ "output_category": "user-specified",
1667
+ "output_value": "0.00020000",
1668
+ "receiving_address": "QjRyPqXS1TpJ7SCSeJ8r2Fg7gRy2ZNPNFr"
1669
+ },
1670
+ {
1671
+ "output_index": 236,
1672
+ "output_category": "user-specified",
1673
+ "output_value": "0.00020000",
1674
+ "receiving_address": "QNsfzVsXqDWd5aZRJEokN9jetViQhmWBo3"
1675
+ },
1676
+ {
1677
+ "output_index": 237,
1678
+ "output_category": "user-specified",
1679
+ "output_value": "0.00020000",
1680
+ "receiving_address": "QebTYx6qakVrXrEsNWyDfsbGnen8tKYxcU"
1681
+ },
1682
+ {
1683
+ "output_index": 238,
1684
+ "output_category": "user-specified",
1685
+ "output_value": "0.00020000",
1686
+ "receiving_address": "QaLtQpitmbSCPBM9UTKBEHD6DHQMpwaeTi"
1687
+ },
1688
+ {
1689
+ "output_index": 239,
1690
+ "output_category": "user-specified",
1691
+ "output_value": "0.00020000",
1692
+ "receiving_address": "QVnKuJGCKN142rPzy6L4TMehev4rfdq1Sm"
1693
+ },
1694
+ {
1695
+ "output_index": 240,
1696
+ "output_category": "user-specified",
1697
+ "output_value": "0.00020000",
1698
+ "receiving_address": "QRM92bthEiNm21Se1Xnp6ombgtTDxWA4uH"
1699
+ },
1700
+ {
1701
+ "output_index": 241,
1702
+ "output_category": "user-specified",
1703
+ "output_value": "0.00020000",
1704
+ "receiving_address": "QeWvkjaz49Vr4fcgdKbKy2bnvgo6cLfLfZ"
1705
+ },
1706
+ {
1707
+ "output_index": 242,
1708
+ "output_category": "user-specified",
1709
+ "output_value": "0.00020000",
1710
+ "receiving_address": "QZawkMRABQjmhGrsmULCAgvdH4RpkZymm9"
1711
+ },
1712
+ {
1713
+ "output_index": 243,
1714
+ "output_category": "user-specified",
1715
+ "output_value": "0.00020000",
1716
+ "receiving_address": "QVhLv79gKG1hh6KTp4bbkA4Z46ntiAbgWr"
1717
+ },
1718
+ {
1719
+ "output_index": 244,
1720
+ "output_category": "user-specified",
1721
+ "output_value": "0.00020000",
1722
+ "receiving_address": "QShKmsirtpovAJm3931qjnebeYQkAXNaJx"
1723
+ },
1724
+ {
1725
+ "output_index": 245,
1726
+ "output_category": "user-specified",
1727
+ "output_value": "0.00020000",
1728
+ "receiving_address": "QWFyE6ZmtpneeiDS1ZKJiT8aPXiFAvTUMc"
1729
+ },
1730
+ {
1731
+ "output_index": 246,
1732
+ "output_category": "user-specified",
1733
+ "output_value": "0.00020000",
1734
+ "receiving_address": "QcDLExoFfDHdfFUPtmfwRLaiEz1LpyKvoR"
1735
+ },
1736
+ {
1737
+ "output_index": 247,
1738
+ "output_category": "user-specified",
1739
+ "output_value": "0.00020000",
1740
+ "receiving_address": "QYo5RjKZGp6Yh4jETkNXdnu2m6ip7PKSfq"
1741
+ },
1742
+ {
1743
+ "output_index": 248,
1744
+ "output_category": "user-specified",
1745
+ "output_value": "0.00020000",
1746
+ "receiving_address": "Qjw9y3EspWGYVSY6UGPS5bAwNsBszreAtQ"
1747
+ },
1748
+ {
1749
+ "output_index": 249,
1750
+ "output_category": "user-specified",
1751
+ "output_value": "0.00020000",
1752
+ "receiving_address": "QQ5CYmSwM9xFfFn1d5PeS531bxyKdghpjP"
1753
+ },
1754
+ {
1755
+ "output_index": 250,
1756
+ "output_category": "user-specified",
1757
+ "output_value": "0.00020000",
1758
+ "receiving_address": "QThksy1bZm4JzBMSKPcbxeihFBLKVjhqEY"
1759
+ },
1760
+ {
1761
+ "output_index": 251,
1762
+ "output_category": "user-specified",
1763
+ "output_value": "0.00020000",
1764
+ "receiving_address": "QgZFKJQWAWTD1199AMvDKTYGCPqtSg9ekK"
1765
+ },
1766
+ {
1767
+ "output_index": 252,
1768
+ "output_category": "user-specified",
1769
+ "output_value": "0.00020000",
1770
+ "receiving_address": "QXNdep8raBxseVLawvDmuArdtjq2YXQFG2"
1771
+ }
1772
+ ],
1773
+ "input_address_data": [
1774
+ {
1775
+ "required_signatures": 4,
1776
+ "public_keys": [
1777
+ "03974f49bffe0d5276fb04c1972372f9af676d71cdfe5c3b4192edb13d7a22d77b",
1778
+ "02510e29d51e9a4268e6a5253c1fbd8144857945b82acb0accfc235cc7ca36da11",
1779
+ "0201a819bf549c253c4397bdd1535374de39e9bc278f637afdc27642d52cf79139",
1780
+ "039e3aa9ea182ccdaff2d8d150010b27cc4765c1d55ce674e52631af7376354d62",
1781
+ "03ee980e6334142342fcd9e6facfecfa139981e2276584c91d6a9739d533ac99fc"
1782
+ ],
1783
+ "address": "tltc1qjtjc58klkxhhnjyrsux7lcq9usw0g93kmkalne087rtj483lswpsfe4jgl",
1784
+ "address_type": "WITNESS_V0"
1785
+ }
1786
+ ],
1787
+ "estimated_tx_size": 13725
1788
+ }
1789
+ }