block_io 2.0.0 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. checksums.yaml +4 -4
  2. data/{.appveyor.yml → .appveyor.yml-disabled} +2 -2
  3. data/.gitignore +1 -0
  4. data/.travis.yml +1 -1
  5. data/LICENSE +1 -1
  6. data/README.md +18 -14
  7. data/block_io.gemspec +7 -7
  8. data/examples/basic.rb +29 -5
  9. data/examples/dtrust.rb +43 -24
  10. data/examples/sweeper.rb +21 -16
  11. data/lib/block_io/api_exception.rb +11 -0
  12. data/lib/block_io/chainparams/BTC.yml +8 -0
  13. data/lib/block_io/chainparams/BTCTEST.yml +8 -0
  14. data/lib/block_io/chainparams/DOGE.yml +8 -0
  15. data/lib/block_io/chainparams/DOGETEST.yml +8 -0
  16. data/lib/block_io/chainparams/LTC.yml +8 -0
  17. data/lib/block_io/chainparams/LTCTEST.yml +8 -0
  18. data/lib/block_io/client.rb +145 -80
  19. data/lib/block_io/extended_bitcoinrb.rb +132 -0
  20. data/lib/block_io/helper.rb +211 -53
  21. data/lib/block_io/key.rb +11 -124
  22. data/lib/block_io/version.rb +1 -1
  23. data/lib/block_io.rb +3 -2
  24. data/spec/client_misc_spec.rb +76 -0
  25. data/spec/client_spec.rb +23 -178
  26. data/spec/dtrust_spec.rb +167 -0
  27. data/spec/helper_spec.rb +117 -7
  28. data/spec/key_spec.rb +50 -19
  29. data/spec/larger_transaction_spec.rb +371 -0
  30. data/spec/sweep_spec.rb +115 -0
  31. data/spec/test-cases/.gitignore +2 -0
  32. data/spec/test-cases/LICENSE +21 -0
  33. data/spec/test-cases/README.md +2 -0
  34. data/spec/test-cases/json/create_and_sign_transaction_response.json +61 -0
  35. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json +1261 -0
  36. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json +1266 -0
  37. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json +1271 -0
  38. data/spec/test-cases/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json +3816 -0
  39. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2SH_3of5_195inputs.json +2931 -0
  40. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2SH_4of5_195inputs.json +5 -0
  41. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_251inputs.json +3771 -0
  42. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_252inputs.json +3786 -0
  43. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_253inputs.json +3801 -0
  44. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_251inputs.json +5 -0
  45. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_252inputs.json +5 -0
  46. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_253inputs.json +5 -0
  47. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_251inputs.json +3771 -0
  48. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_252inputs.json +3786 -0
  49. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_253inputs.json +3801 -0
  50. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_251inputs.json +5 -0
  51. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_252inputs.json +5 -0
  52. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_253inputs.json +5 -0
  53. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2sh_3_of_5_keys.json +21 -0
  54. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2sh_4_of_5_keys.json +5 -0
  55. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_3_of_5_keys.json +21 -0
  56. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_4_of_5_keys.json +5 -0
  57. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3_of_5_keys.json +36 -0
  58. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_251outputs.json +591 -0
  59. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_252outputs.json +576 -0
  60. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_253outputs.json +531 -0
  61. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4_of_5_keys.json +5 -0
  62. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_251outputs.json +5 -0
  63. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_252outputs.json +5 -0
  64. data/spec/test-cases/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_253outputs.json +5 -0
  65. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2pkh.json +5 -0
  66. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2wpkh.json +5 -0
  67. data/spec/test-cases/json/create_and_sign_transaction_response_sweep_p2wpkh_over_p2sh.json +5 -0
  68. data/spec/test-cases/json/create_and_sign_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +21 -0
  69. data/spec/test-cases/json/create_and_sign_transaction_response_witness_v1_output.json +11 -0
  70. data/spec/test-cases/json/get_balance_response.json +8 -0
  71. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2SH_3of5_195inputs.json +1397 -0
  72. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2SH_4of5_195inputs.json +1397 -0
  73. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_251inputs.json +1795 -0
  74. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_252inputs.json +1802 -0
  75. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_253inputs.json +1809 -0
  76. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_251inputs.json +1789 -0
  77. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_252inputs.json +1802 -0
  78. data/spec/test-cases/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_253inputs.json +1809 -0
  79. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_251inputs.json +1795 -0
  80. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_252inputs.json +1802 -0
  81. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_253inputs.json +1809 -0
  82. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_251inputs.json +1795 -0
  83. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_252inputs.json +1802 -0
  84. data/spec/test-cases/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_253inputs.json +1809 -0
  85. data/spec/test-cases/json/prepare_dtrust_transaction_response_p2sh.json +45 -0
  86. data/spec/test-cases/json/prepare_dtrust_transaction_response_p2wsh_over_p2sh.json +45 -0
  87. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0.json +52 -0
  88. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_251outputs.json +1805 -0
  89. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_252outputs.json +1804 -0
  90. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_3of5_253outputs.json +1789 -0
  91. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_251outputs.json +1805 -0
  92. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_252outputs.json +1804 -0
  93. data/spec/test-cases/json/prepare_dtrust_transaction_response_witness_v0_4of5_253outputs.json +1789 -0
  94. data/spec/test-cases/json/prepare_sweep_transaction_response_p2pkh.json +35 -0
  95. data/spec/test-cases/json/prepare_sweep_transaction_response_p2wpkh.json +35 -0
  96. data/spec/test-cases/json/prepare_sweep_transaction_response_p2wpkh_over_p2sh.json +35 -0
  97. data/spec/test-cases/json/prepare_transaction_response.json +164 -0
  98. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json +1796 -0
  99. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json +1803 -0
  100. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json +1810 -0
  101. data/spec/test-cases/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json +5367 -0
  102. data/spec/test-cases/json/prepare_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +76 -0
  103. data/spec/test-cases/json/prepare_transaction_response_witness_v1_output.json +64 -0
  104. data/spec/test-cases/json/summarize_prepared_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json +6 -0
  105. metadata +203 -57
  106. data/examples/max_withdrawal.rb +0 -29
  107. data/lib/block_io/constants.rb +0 -10
  108. data/spec/data/sign_and_finalize_dtrust_withdrawal_request.json +0 -1
  109. data/spec/data/sign_and_finalize_sweep_request.json +0 -1
  110. data/spec/data/sign_and_finalize_withdrawal_request.json +0 -4
  111. data/spec/data/sweep_from_address_response.json +0 -1
  112. data/spec/data/withdraw_from_dtrust_address_response.json +0 -1
  113. data/spec/data/withdraw_response.json +0 -1227
  114. data/spec/rfc6979_spec.rb +0 -59
  115. data/spec/withdraw_spec.rb +0 -90
@@ -0,0 +1,1397 @@
1
+ {
2
+ "status": "success",
3
+ "data": {
4
+ "network": "LTCTEST",
5
+ "tx_type": "dtrust",
6
+ "inputs": [
7
+ {
8
+ "input_index": 0,
9
+ "previous_txid": "0f23ddd0f3ca3a152bce6a26a8f5e37d8a6d1487a439ca5b3ef6f93c3fdad94e",
10
+ "previous_output_index": 0,
11
+ "input_value": "0.00188899",
12
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
13
+ },
14
+ {
15
+ "input_index": 1,
16
+ "previous_txid": "4f8708f0d2dc1460d1454b513ed8e2b94f570345d2419d4cc6755eb8cee41856",
17
+ "previous_output_index": 0,
18
+ "input_value": "0.00199123",
19
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
20
+ },
21
+ {
22
+ "input_index": 2,
23
+ "previous_txid": "d1dfe2dda1088e781062003674ca8bf6152dcd9f9eaa0c70994ed0d16818cdd1",
24
+ "previous_output_index": 0,
25
+ "input_value": "0.00176987",
26
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
27
+ },
28
+ {
29
+ "input_index": 3,
30
+ "previous_txid": "c3a600c23255e6d7b03f8a9b6fa22a2d03c719517d031a28b6cf79fd987933b1",
31
+ "previous_output_index": 0,
32
+ "input_value": "0.00187626",
33
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
34
+ },
35
+ {
36
+ "input_index": 4,
37
+ "previous_txid": "2e7f1ad2e687a0bf8325540d332a8d846ba3e2ee6a223d0a4718a74c044f27dd",
38
+ "previous_output_index": 0,
39
+ "input_value": "0.00159263",
40
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
41
+ },
42
+ {
43
+ "input_index": 5,
44
+ "previous_txid": "c8ef72b5db0f6d91ccaf15322c23373d54d72b7b327d052ea0e83bcf91379aa3",
45
+ "previous_output_index": 0,
46
+ "input_value": "0.00117120",
47
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
48
+ },
49
+ {
50
+ "input_index": 6,
51
+ "previous_txid": "9f0c4d46f49c069ca6b3cf1b61f327d04ee05cce27e2caa3d35c513ecfe7110e",
52
+ "previous_output_index": 0,
53
+ "input_value": "0.00117180",
54
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
55
+ },
56
+ {
57
+ "input_index": 7,
58
+ "previous_txid": "16a6d57a8cd5a9029f7e69556ba26703b7d411e64390718d8326c238e64f605e",
59
+ "previous_output_index": 0,
60
+ "input_value": "0.00149609",
61
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
62
+ },
63
+ {
64
+ "input_index": 8,
65
+ "previous_txid": "63669667b4a7a7cef69e878d127664f50a8e60e8b69928a1714009ce6d71b044",
66
+ "previous_output_index": 0,
67
+ "input_value": "0.00158885",
68
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
69
+ },
70
+ {
71
+ "input_index": 9,
72
+ "previous_txid": "dcdeb6d6950c18e6d64377d73c5444d3da7a799e7b8e5d243f6d6aeeab6e7243",
73
+ "previous_output_index": 0,
74
+ "input_value": "0.00133260",
75
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
76
+ },
77
+ {
78
+ "input_index": 10,
79
+ "previous_txid": "e1711f4bcf20ae83f2b1ec264a67eb03621063ed901a5d696f9725ad960b80bc",
80
+ "previous_output_index": 0,
81
+ "input_value": "0.00146748",
82
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
83
+ },
84
+ {
85
+ "input_index": 11,
86
+ "previous_txid": "487af01d43088aee605255888fe911d3545e2f904312d00f6546e1e7edf449be",
87
+ "previous_output_index": 0,
88
+ "input_value": "0.00188338",
89
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
90
+ },
91
+ {
92
+ "input_index": 12,
93
+ "previous_txid": "ed3fda3f6c11672abf74fe372c01183bb3d4f99bab1a92e99d313165ca75eafa",
94
+ "previous_output_index": 0,
95
+ "input_value": "0.00144350",
96
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
97
+ },
98
+ {
99
+ "input_index": 13,
100
+ "previous_txid": "ee5ee9a9a39f4e25cf89b94358518d3f09eca20a8c1ee28b488e9e70712b8601",
101
+ "previous_output_index": 0,
102
+ "input_value": "0.00182515",
103
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
104
+ },
105
+ {
106
+ "input_index": 14,
107
+ "previous_txid": "f16438c32a68fa891a1d162313d0d046f8be0d8c41ff7ae108ebc3829de3df28",
108
+ "previous_output_index": 0,
109
+ "input_value": "0.00196690",
110
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
111
+ },
112
+ {
113
+ "input_index": 15,
114
+ "previous_txid": "da476cea2d8827e1ccf2cf19a21b6e47189fc8b45757c0985b09e6f0186ce59c",
115
+ "previous_output_index": 0,
116
+ "input_value": "0.00198580",
117
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
118
+ },
119
+ {
120
+ "input_index": 16,
121
+ "previous_txid": "d757fa0aa845aaa7a7c4b6325b532271ff934071b6b8422af46170bcae28845e",
122
+ "previous_output_index": 0,
123
+ "input_value": "0.00193334",
124
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
125
+ },
126
+ {
127
+ "input_index": 17,
128
+ "previous_txid": "e364c3c9536ce730286cde15dcb9009db42e9a2654aa6828f97eb998817d80d9",
129
+ "previous_output_index": 0,
130
+ "input_value": "0.00151805",
131
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
132
+ },
133
+ {
134
+ "input_index": 18,
135
+ "previous_txid": "eb378ea3cd8962f17ff00c5f4318ec8957af2b92d0b4309c76f947dba7676b1a",
136
+ "previous_output_index": 0,
137
+ "input_value": "0.00133488",
138
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
139
+ },
140
+ {
141
+ "input_index": 19,
142
+ "previous_txid": "5bd72f1ff686f2e4419d17cb5b887507c85abbc953a1c6be91b6560399a34c57",
143
+ "previous_output_index": 0,
144
+ "input_value": "0.00122601",
145
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
146
+ },
147
+ {
148
+ "input_index": 20,
149
+ "previous_txid": "de71353cfc0ce1ce7242cd2d44cf2a9c1a3ebce28a027632ffbfe44cc7ecfb42",
150
+ "previous_output_index": 0,
151
+ "input_value": "0.00163130",
152
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
153
+ },
154
+ {
155
+ "input_index": 21,
156
+ "previous_txid": "cae57417de4b772eb99a9b0007d0f37603ffbf7fde21cd79f593ab141c23d843",
157
+ "previous_output_index": 0,
158
+ "input_value": "0.00182911",
159
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
160
+ },
161
+ {
162
+ "input_index": 22,
163
+ "previous_txid": "ad0288508ae263216709ecacf31d7dde9ea89dbf23cf70f26988103dd8bcc202",
164
+ "previous_output_index": 0,
165
+ "input_value": "0.00135596",
166
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
167
+ },
168
+ {
169
+ "input_index": 23,
170
+ "previous_txid": "a27397447ec1a53dff40668e20d47ee481a3a1403eea19a1ac668c6918972746",
171
+ "previous_output_index": 0,
172
+ "input_value": "0.00138693",
173
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
174
+ },
175
+ {
176
+ "input_index": 24,
177
+ "previous_txid": "0e31c912fb76f658ad99ab4cfffb28b5d5fc03dffb788f0bb24755c2041f81e4",
178
+ "previous_output_index": 0,
179
+ "input_value": "0.00128553",
180
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
181
+ },
182
+ {
183
+ "input_index": 25,
184
+ "previous_txid": "a9300f8ca3ad687d2c10cba872d20bc2adc2021773212513e72b3c57b3366b15",
185
+ "previous_output_index": 0,
186
+ "input_value": "0.00140619",
187
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
188
+ },
189
+ {
190
+ "input_index": 26,
191
+ "previous_txid": "a7e0ae17b8eb35805d692844815fb505de46fc505061a5a8f5568faf4a50d1a8",
192
+ "previous_output_index": 0,
193
+ "input_value": "0.00188953",
194
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
195
+ },
196
+ {
197
+ "input_index": 27,
198
+ "previous_txid": "ba54d31dce8ff12ebcb8131ad6db952ebfeb84da7eeed9561d00cae1e0e77e3f",
199
+ "previous_output_index": 0,
200
+ "input_value": "0.00183684",
201
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
202
+ },
203
+ {
204
+ "input_index": 28,
205
+ "previous_txid": "777a7f626a7304178b7f45c73308a589efa8b9ac8fbbf44d9ae4cb88a21d7935",
206
+ "previous_output_index": 0,
207
+ "input_value": "0.00116269",
208
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
209
+ },
210
+ {
211
+ "input_index": 29,
212
+ "previous_txid": "cdaefc98a463f7714bc4b4b112176c19969fde8d23d2e4e0eb932d11c34f3191",
213
+ "previous_output_index": 0,
214
+ "input_value": "0.00195092",
215
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
216
+ },
217
+ {
218
+ "input_index": 30,
219
+ "previous_txid": "c65603d4c6c8c1286759f5bfbf9ff513d9038a1fd5ee61636aec3d74febb5534",
220
+ "previous_output_index": 0,
221
+ "input_value": "0.00133315",
222
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
223
+ },
224
+ {
225
+ "input_index": 31,
226
+ "previous_txid": "2cba7851c3287412d0cc37254b22443e2bdd9455df7e58f05053e83c133a9be4",
227
+ "previous_output_index": 0,
228
+ "input_value": "0.00194325",
229
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
230
+ },
231
+ {
232
+ "input_index": 32,
233
+ "previous_txid": "597510e29b3b7243bef7eece2943a7587532291cfe9ce709f6ab7fe2cb555625",
234
+ "previous_output_index": 0,
235
+ "input_value": "0.00169660",
236
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
237
+ },
238
+ {
239
+ "input_index": 33,
240
+ "previous_txid": "418bb107162c51a2555896d1b34d06d93a7e05b8bbffdb8d9881c6cb7d491d06",
241
+ "previous_output_index": 0,
242
+ "input_value": "0.00131380",
243
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
244
+ },
245
+ {
246
+ "input_index": 34,
247
+ "previous_txid": "ff3f5675c37e704d3c50ddd46d8d871c6c5d10cb22080c70cd9fc28208b5491d",
248
+ "previous_output_index": 0,
249
+ "input_value": "0.00177909",
250
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
251
+ },
252
+ {
253
+ "input_index": 35,
254
+ "previous_txid": "eaefc181b07a623ce67e474323bc37157b41900d4b4f547050781b35a41fce8f",
255
+ "previous_output_index": 0,
256
+ "input_value": "0.00195580",
257
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
258
+ },
259
+ {
260
+ "input_index": 36,
261
+ "previous_txid": "c41fcb9b086b94ad1b4074a9f6a3a8e3a88a58b610e4cd113891489017589b5d",
262
+ "previous_output_index": 0,
263
+ "input_value": "0.00128632",
264
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
265
+ },
266
+ {
267
+ "input_index": 37,
268
+ "previous_txid": "2e348bf8d560f85994cf07e3a96b1faaf680c7df9a04aa63f6180af893618274",
269
+ "previous_output_index": 0,
270
+ "input_value": "0.00112017",
271
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
272
+ },
273
+ {
274
+ "input_index": 38,
275
+ "previous_txid": "59210cc02adf5e0e4a528557fcba2d136db320697f71f9b0d1ed8834dfd4664c",
276
+ "previous_output_index": 0,
277
+ "input_value": "0.00189300",
278
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
279
+ },
280
+ {
281
+ "input_index": 39,
282
+ "previous_txid": "fa1bbfc25bbcae1576e4fd8160fd042c2cb924992713bfbaecfe28167ae89e44",
283
+ "previous_output_index": 0,
284
+ "input_value": "0.00145523",
285
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
286
+ },
287
+ {
288
+ "input_index": 40,
289
+ "previous_txid": "13c433cb24794bc747ffa1757b70f4159671484426059a8c6483a44bd87b1ca4",
290
+ "previous_output_index": 0,
291
+ "input_value": "0.00148921",
292
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
293
+ },
294
+ {
295
+ "input_index": 41,
296
+ "previous_txid": "fecca8de78fe510d35810ee1b26b771f0a58022b16ade5f0ee5e609ebf85d2ab",
297
+ "previous_output_index": 0,
298
+ "input_value": "0.00166984",
299
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
300
+ },
301
+ {
302
+ "input_index": 42,
303
+ "previous_txid": "285e762e0c48de2d2b2af47c4fcc96e7877b0ed5c87a325a5c1c2710c3f2e5a5",
304
+ "previous_output_index": 0,
305
+ "input_value": "0.00185357",
306
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
307
+ },
308
+ {
309
+ "input_index": 43,
310
+ "previous_txid": "c689627f0f03742d0bf37853537e02a24e58382e6b85b38908266215a2b21545",
311
+ "previous_output_index": 0,
312
+ "input_value": "0.00115990",
313
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
314
+ },
315
+ {
316
+ "input_index": 44,
317
+ "previous_txid": "279c8a98b92049f867d0a65d8fb2debecb901933916bccbf2eb75ff5c0abbd3c",
318
+ "previous_output_index": 0,
319
+ "input_value": "0.00157570",
320
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
321
+ },
322
+ {
323
+ "input_index": 45,
324
+ "previous_txid": "5dfb4777b2d912894a1fa6ffe7fc85c8b14b1e568ac23b121079864b4e3f85a0",
325
+ "previous_output_index": 0,
326
+ "input_value": "0.00151454",
327
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
328
+ },
329
+ {
330
+ "input_index": 46,
331
+ "previous_txid": "a8922402053186b0c94a8a85ea3b7052ed738df06b03b69ab0f48d5d1f7172e3",
332
+ "previous_output_index": 0,
333
+ "input_value": "0.00121442",
334
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
335
+ },
336
+ {
337
+ "input_index": 47,
338
+ "previous_txid": "e6ee4d6f094dbc2029fa2ef9be464a04fb83049dd02ac7e56bf45e8c78915363",
339
+ "previous_output_index": 0,
340
+ "input_value": "0.00130437",
341
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
342
+ },
343
+ {
344
+ "input_index": 48,
345
+ "previous_txid": "e3f2a764970f4a0c4f68d7569bf46b970ae5f7c94b93246de28531025fc59119",
346
+ "previous_output_index": 0,
347
+ "input_value": "0.00193474",
348
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
349
+ },
350
+ {
351
+ "input_index": 49,
352
+ "previous_txid": "90a9926dd913e4affd0b48a6aacd775aa20ab3e4b8e3b10285a00aff17f307f9",
353
+ "previous_output_index": 0,
354
+ "input_value": "0.00126252",
355
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
356
+ },
357
+ {
358
+ "input_index": 50,
359
+ "previous_txid": "c654b8b86d7b976d3bd2c91b323737b4757a1e0485abf3d526d9b2ff47e12b32",
360
+ "previous_output_index": 0,
361
+ "input_value": "0.00179537",
362
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
363
+ },
364
+ {
365
+ "input_index": 51,
366
+ "previous_txid": "dc25fc39a55d393476e0166ac47419bb84ee9d1d0a8f2f6e7d798605795d5d31",
367
+ "previous_output_index": 0,
368
+ "input_value": "0.00113785",
369
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
370
+ },
371
+ {
372
+ "input_index": 52,
373
+ "previous_txid": "1a7ad70c9cf8a16a762e12cbc89f3edc377df3e4951d80279a1fef3163947d1c",
374
+ "previous_output_index": 0,
375
+ "input_value": "0.00179550",
376
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
377
+ },
378
+ {
379
+ "input_index": 53,
380
+ "previous_txid": "81b7abe5ddf7974149d24873f102f16888a3d1e46e5011c913429fd8e26a8be8",
381
+ "previous_output_index": 0,
382
+ "input_value": "0.00132352",
383
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
384
+ },
385
+ {
386
+ "input_index": 54,
387
+ "previous_txid": "e120d24441b9220b8c4bce2d2a4be78d21dee811f586bdb42b4faa4dbd30f562",
388
+ "previous_output_index": 0,
389
+ "input_value": "0.00114069",
390
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
391
+ },
392
+ {
393
+ "input_index": 55,
394
+ "previous_txid": "11e4316528dac222807a4a29900d954faccee90f06e83034a09b806e0a8fb4bd",
395
+ "previous_output_index": 0,
396
+ "input_value": "0.00138170",
397
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
398
+ },
399
+ {
400
+ "input_index": 56,
401
+ "previous_txid": "eea037a6a5080214367f771fc014e153cd71b2ed23a17d9cbc317591086896d4",
402
+ "previous_output_index": 0,
403
+ "input_value": "0.00156474",
404
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
405
+ },
406
+ {
407
+ "input_index": 57,
408
+ "previous_txid": "60ee4e4887aa86bdadd233703e16418374d691bf49001eff66806bdfaba78815",
409
+ "previous_output_index": 0,
410
+ "input_value": "0.00148646",
411
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
412
+ },
413
+ {
414
+ "input_index": 58,
415
+ "previous_txid": "ed1e79eca9ba413b321fc673d6472c5b4a3e5d975186317349dbbb77af6ae22c",
416
+ "previous_output_index": 0,
417
+ "input_value": "0.00121304",
418
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
419
+ },
420
+ {
421
+ "input_index": 59,
422
+ "previous_txid": "7ccb4c438cf5ecd79bf9de6f5d3e4295bf557f37cbd19ce77063f8cfabcb6324",
423
+ "previous_output_index": 0,
424
+ "input_value": "0.00187234",
425
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
426
+ },
427
+ {
428
+ "input_index": 60,
429
+ "previous_txid": "8af3cdcd99e2a0a5a83f44d58ce4c2b712e05ed5f1d6062784b000c76ac1a70c",
430
+ "previous_output_index": 0,
431
+ "input_value": "0.00145465",
432
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
433
+ },
434
+ {
435
+ "input_index": 61,
436
+ "previous_txid": "cda7b1703d7870c3fcd3be3252f19f59fd05dbb2f5edc8be330b966f4ca97a58",
437
+ "previous_output_index": 0,
438
+ "input_value": "0.00151222",
439
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
440
+ },
441
+ {
442
+ "input_index": 62,
443
+ "previous_txid": "b9d001df184d89c4f057c69377b0dfbbf2731958771c98665372d16c2fc8543b",
444
+ "previous_output_index": 0,
445
+ "input_value": "0.00154440",
446
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
447
+ },
448
+ {
449
+ "input_index": 63,
450
+ "previous_txid": "890702d53afd12d670efc9c0c86b6fe523272399c35e8c52bee49e0d86f887ed",
451
+ "previous_output_index": 0,
452
+ "input_value": "0.00186212",
453
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
454
+ },
455
+ {
456
+ "input_index": 64,
457
+ "previous_txid": "227a2f8a4b5111eb4c5eb3edb69d6bcd76655f456192445bfb3239193a5d32e2",
458
+ "previous_output_index": 0,
459
+ "input_value": "0.00138914",
460
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
461
+ },
462
+ {
463
+ "input_index": 65,
464
+ "previous_txid": "724369bea178095077f41c67f79852d37a16ddee50afb6b8fcad1665b9ce417e",
465
+ "previous_output_index": 0,
466
+ "input_value": "0.00138530",
467
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
468
+ },
469
+ {
470
+ "input_index": 66,
471
+ "previous_txid": "9a715a4b9229b3ce5fcd6726f6e10bea241c05564ace7a64a4686154e40d70bf",
472
+ "previous_output_index": 0,
473
+ "input_value": "0.00194739",
474
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
475
+ },
476
+ {
477
+ "input_index": 67,
478
+ "previous_txid": "b761c2de9c4dcd075c171117a404f98f132886bf34b86eb3da2b45d689bbc6f0",
479
+ "previous_output_index": 0,
480
+ "input_value": "0.00129007",
481
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
482
+ },
483
+ {
484
+ "input_index": 68,
485
+ "previous_txid": "f782b25286b81dc968e00e7d1d5d23d2a6367f7b587e71c8a5a7d64d373600ce",
486
+ "previous_output_index": 0,
487
+ "input_value": "0.00115221",
488
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
489
+ },
490
+ {
491
+ "input_index": 69,
492
+ "previous_txid": "ce604e2ca22230ef6bfcd8042522ddc908d00fc6a2871159e3ff2f053cdc9093",
493
+ "previous_output_index": 0,
494
+ "input_value": "0.00172840",
495
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
496
+ },
497
+ {
498
+ "input_index": 70,
499
+ "previous_txid": "059ec4b425aeba611689a5e1872f2f821ff10248c35c474f991f9c4e3c44afeb",
500
+ "previous_output_index": 0,
501
+ "input_value": "0.00125075",
502
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
503
+ },
504
+ {
505
+ "input_index": 71,
506
+ "previous_txid": "28ec684d1674da00d94f5564f081ee642787819689a25c9046751a3bb43800f6",
507
+ "previous_output_index": 0,
508
+ "input_value": "0.00194042",
509
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
510
+ },
511
+ {
512
+ "input_index": 72,
513
+ "previous_txid": "75266c3e5c8b01c5417ee6e52e3454e4eb492bd09ec312c27cfca3ea72a0973a",
514
+ "previous_output_index": 0,
515
+ "input_value": "0.00167809",
516
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
517
+ },
518
+ {
519
+ "input_index": 73,
520
+ "previous_txid": "50cfc7cbfc90642d0daf85fa391592f7f204a8818fc49bce6a3b6d5c4bda544f",
521
+ "previous_output_index": 0,
522
+ "input_value": "0.00167466",
523
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
524
+ },
525
+ {
526
+ "input_index": 74,
527
+ "previous_txid": "644fab29429a6e98d829e414e85692feb43cc96ed6e5c1933ce22e864abd62ca",
528
+ "previous_output_index": 0,
529
+ "input_value": "0.00187592",
530
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
531
+ },
532
+ {
533
+ "input_index": 75,
534
+ "previous_txid": "08f960900aafb57693726455dc80c08e06300047d1715fa1b2ae6dad3740ea27",
535
+ "previous_output_index": 0,
536
+ "input_value": "0.00187728",
537
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
538
+ },
539
+ {
540
+ "input_index": 76,
541
+ "previous_txid": "ac6515f61911ea1370741b3246fc013acc6fe3e5d704645571683250f144a8b1",
542
+ "previous_output_index": 0,
543
+ "input_value": "0.00173666",
544
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
545
+ },
546
+ {
547
+ "input_index": 77,
548
+ "previous_txid": "127ecea9ad42bdd7dc00153e6b956eb707f23d18b1a45d6d3b295ef45c4a9288",
549
+ "previous_output_index": 0,
550
+ "input_value": "0.00179157",
551
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
552
+ },
553
+ {
554
+ "input_index": 78,
555
+ "previous_txid": "21be38aab4b722ffc4a2baff44f68d9d102df60da1e85ad67febcb5dc2adbc4d",
556
+ "previous_output_index": 0,
557
+ "input_value": "0.00180660",
558
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
559
+ },
560
+ {
561
+ "input_index": 79,
562
+ "previous_txid": "fc5574c22475f69123034e5532e41fd6fd48bb9b1e4c74db432dd677a494e8c7",
563
+ "previous_output_index": 0,
564
+ "input_value": "0.00161884",
565
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
566
+ },
567
+ {
568
+ "input_index": 80,
569
+ "previous_txid": "f334d75b6f0681d6a60c91478f59f14b189c5ed121354a6409b1a04edd43e1fe",
570
+ "previous_output_index": 0,
571
+ "input_value": "0.00189429",
572
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
573
+ },
574
+ {
575
+ "input_index": 81,
576
+ "previous_txid": "0f46009ffb81827e50a1951c05e45d454b2ec9fb54624fcbb6117cfbab7abcaf",
577
+ "previous_output_index": 0,
578
+ "input_value": "0.00125044",
579
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
580
+ },
581
+ {
582
+ "input_index": 82,
583
+ "previous_txid": "2f14311fd74ae76855ac571642f8aa5ab3c28f7c73961e57af2096da6b8fbaa6",
584
+ "previous_output_index": 0,
585
+ "input_value": "0.00167726",
586
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
587
+ },
588
+ {
589
+ "input_index": 83,
590
+ "previous_txid": "4342c42e2dbb60c8bc114ef4f5132cf922a46ab92d907399814bbe7d3c7c18f0",
591
+ "previous_output_index": 0,
592
+ "input_value": "0.00130702",
593
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
594
+ },
595
+ {
596
+ "input_index": 84,
597
+ "previous_txid": "7ac63565fe2c74e1f3d05993eece3d7fc172ae0ba05720193413b3376636f6b2",
598
+ "previous_output_index": 0,
599
+ "input_value": "0.00122246",
600
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
601
+ },
602
+ {
603
+ "input_index": 85,
604
+ "previous_txid": "97ad3d3bcb63c2fe69740c95d64ddde09bddc45d22c20d25455e72788ae3f97f",
605
+ "previous_output_index": 0,
606
+ "input_value": "0.00150296",
607
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
608
+ },
609
+ {
610
+ "input_index": 86,
611
+ "previous_txid": "2e7536341283f6ac7811df507e09ff2cc27f52469380c6bd5f62aa5b57d3f57a",
612
+ "previous_output_index": 0,
613
+ "input_value": "0.00175048",
614
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
615
+ },
616
+ {
617
+ "input_index": 87,
618
+ "previous_txid": "17299f6fc7a41552a29e38584715541840525f626381be44d2e8ef2c315ac700",
619
+ "previous_output_index": 0,
620
+ "input_value": "0.00140246",
621
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
622
+ },
623
+ {
624
+ "input_index": 88,
625
+ "previous_txid": "b72787e344a32537ee74aa6a15238e20b06f455dfacef5851011205be8736a02",
626
+ "previous_output_index": 0,
627
+ "input_value": "0.00142125",
628
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
629
+ },
630
+ {
631
+ "input_index": 89,
632
+ "previous_txid": "5d34f9f029580b07ddd85f6915a3d18cf84d1ac42e02c50ec11c559488b37752",
633
+ "previous_output_index": 0,
634
+ "input_value": "0.00123105",
635
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
636
+ },
637
+ {
638
+ "input_index": 90,
639
+ "previous_txid": "f76ff9f4b3c81d9a9dae876a7c51c45c9a72a22aeb078641fa5c5d82da151111",
640
+ "previous_output_index": 0,
641
+ "input_value": "0.00112500",
642
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
643
+ },
644
+ {
645
+ "input_index": 91,
646
+ "previous_txid": "89d1f52010064b5aaaf356494fa35d30471222e183d7dab80b7cd1791fd70c86",
647
+ "previous_output_index": 0,
648
+ "input_value": "0.00180576",
649
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
650
+ },
651
+ {
652
+ "input_index": 92,
653
+ "previous_txid": "84aa1a345d652ccf95570d412f0a13581625a8ffe15e4c85254907a9cd1e2bed",
654
+ "previous_output_index": 0,
655
+ "input_value": "0.00192343",
656
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
657
+ },
658
+ {
659
+ "input_index": 93,
660
+ "previous_txid": "89771fd025132bd1c2c5cb9aa47f98264dde6c42957faff4f06143b0f30d5dc6",
661
+ "previous_output_index": 0,
662
+ "input_value": "0.00174388",
663
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
664
+ },
665
+ {
666
+ "input_index": 94,
667
+ "previous_txid": "e2b5f9e9a095365a2006152e80541d6cefb25ceb78359614ba7ee073eccc64e5",
668
+ "previous_output_index": 0,
669
+ "input_value": "0.00180435",
670
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
671
+ },
672
+ {
673
+ "input_index": 95,
674
+ "previous_txid": "271dfd8332ca8f9a59dff6e420e3831870991c924f2f0ae84571f83bb1588a2d",
675
+ "previous_output_index": 0,
676
+ "input_value": "0.00125347",
677
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
678
+ },
679
+ {
680
+ "input_index": 96,
681
+ "previous_txid": "7cd5497df21cfb6ebf114c79490f7d81b1a5651db48e2319c9e5898022051033",
682
+ "previous_output_index": 0,
683
+ "input_value": "0.00183649",
684
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
685
+ },
686
+ {
687
+ "input_index": 97,
688
+ "previous_txid": "63fc0584d2e9fa4cd7bd6eee5b6e80edeb74339bfc382a06ce8b4b5f22490b66",
689
+ "previous_output_index": 0,
690
+ "input_value": "0.00120652",
691
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
692
+ },
693
+ {
694
+ "input_index": 98,
695
+ "previous_txid": "3eccdac0afd85947b44210731ab320b47818cf038cb4adaa7ffc2e3e54b0d1c8",
696
+ "previous_output_index": 0,
697
+ "input_value": "0.00138499",
698
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
699
+ },
700
+ {
701
+ "input_index": 99,
702
+ "previous_txid": "b20b5ac90b6e2dddc001ad71683731bc5623fdd7490359ac9dacd1f6aeb97a95",
703
+ "previous_output_index": 0,
704
+ "input_value": "0.00121963",
705
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
706
+ },
707
+ {
708
+ "input_index": 100,
709
+ "previous_txid": "749034ef4578e5df7ea41609b33c8e07587b0bd9cc861fede7e4ad6bf7c00b6f",
710
+ "previous_output_index": 0,
711
+ "input_value": "0.00186647",
712
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
713
+ },
714
+ {
715
+ "input_index": 101,
716
+ "previous_txid": "c0c55f68be6e6fce4fd5fb5ad904b40997b214ec5ad967362939dd86261374c0",
717
+ "previous_output_index": 0,
718
+ "input_value": "0.00122561",
719
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
720
+ },
721
+ {
722
+ "input_index": 102,
723
+ "previous_txid": "eb73d49397d7906116881028942c38ecacd811d3356c73714ad9158c034367f8",
724
+ "previous_output_index": 0,
725
+ "input_value": "0.00188091",
726
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
727
+ },
728
+ {
729
+ "input_index": 103,
730
+ "previous_txid": "ce62c50035c8c3477a5142591c8266b40034bdb61931ae6072eb44ecdbf0f17c",
731
+ "previous_output_index": 0,
732
+ "input_value": "0.00157894",
733
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
734
+ },
735
+ {
736
+ "input_index": 104,
737
+ "previous_txid": "14d11af0f6702e164eeb0e4f7f8d572761358b350e6a5e1394fcc539255650e6",
738
+ "previous_output_index": 0,
739
+ "input_value": "0.00144706",
740
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
741
+ },
742
+ {
743
+ "input_index": 105,
744
+ "previous_txid": "d781321e86eea55e58430deab29c4e882a2ffd49ff1e1d74f5dfa8171e97c9f8",
745
+ "previous_output_index": 0,
746
+ "input_value": "0.00194232",
747
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
748
+ },
749
+ {
750
+ "input_index": 106,
751
+ "previous_txid": "c82604aab9eb385717fea1fb48bd48c14fe48d09b9bcedb74d55f84f2ed5335b",
752
+ "previous_output_index": 0,
753
+ "input_value": "0.00169436",
754
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
755
+ },
756
+ {
757
+ "input_index": 107,
758
+ "previous_txid": "71cd5c3a66493161029d66cc12396ccc4731a08d4ef1e3a1f82ef27df0622b05",
759
+ "previous_output_index": 0,
760
+ "input_value": "0.00179883",
761
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
762
+ },
763
+ {
764
+ "input_index": 108,
765
+ "previous_txid": "a509932163f4e1cc281fdcdb9c6d356c216f56c9a0d7965fc6b83b56105f4754",
766
+ "previous_output_index": 0,
767
+ "input_value": "0.00139133",
768
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
769
+ },
770
+ {
771
+ "input_index": 109,
772
+ "previous_txid": "c2ae1769a76d2ee80a14fd957b7eb2add0cb0fbf05283c4b6d844fafec4867ef",
773
+ "previous_output_index": 0,
774
+ "input_value": "0.00155392",
775
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
776
+ },
777
+ {
778
+ "input_index": 110,
779
+ "previous_txid": "6fe2f5c471f17a9177b84e2a4faf3fafc80358db492e9f76aa5bb9e5e876aa2d",
780
+ "previous_output_index": 0,
781
+ "input_value": "0.00167600",
782
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
783
+ },
784
+ {
785
+ "input_index": 111,
786
+ "previous_txid": "2a83d280c0f57a815844308125220da0f0e64c05c8f7a74974bc30bdb9841a5b",
787
+ "previous_output_index": 0,
788
+ "input_value": "0.00178440",
789
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
790
+ },
791
+ {
792
+ "input_index": 112,
793
+ "previous_txid": "75d2f124b4469758eb3ffc7958f9ebfecda67378a61b068178a6a3ea5e0569ba",
794
+ "previous_output_index": 0,
795
+ "input_value": "0.00187578",
796
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
797
+ },
798
+ {
799
+ "input_index": 113,
800
+ "previous_txid": "ce4f7eef01962d690c61ca034481b9be009312cffc558c48777899c1a5fdcf54",
801
+ "previous_output_index": 0,
802
+ "input_value": "0.00159523",
803
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
804
+ },
805
+ {
806
+ "input_index": 114,
807
+ "previous_txid": "34085f9c40430618b52c929bf98a3370b808432f5c6a30088035ed2e06c27a29",
808
+ "previous_output_index": 0,
809
+ "input_value": "0.00147970",
810
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
811
+ },
812
+ {
813
+ "input_index": 115,
814
+ "previous_txid": "4593ffe87ea6426253c29b6d646bb127b0f85914fba6752ad6d86fcba083ed60",
815
+ "previous_output_index": 0,
816
+ "input_value": "0.00128487",
817
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
818
+ },
819
+ {
820
+ "input_index": 116,
821
+ "previous_txid": "fceddd0f271944ec73b99a79bde43eb56e908c73df65862148dc9dd601023e46",
822
+ "previous_output_index": 0,
823
+ "input_value": "0.00171043",
824
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
825
+ },
826
+ {
827
+ "input_index": 117,
828
+ "previous_txid": "75477274b1ce99f2da6a5b4249b31c27f6d17b75b49653af0456e47595d0ed87",
829
+ "previous_output_index": 0,
830
+ "input_value": "0.00135628",
831
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
832
+ },
833
+ {
834
+ "input_index": 118,
835
+ "previous_txid": "a3df38065316e390441db1aa7aa85208b7544af5352c43775f139f1df7320b68",
836
+ "previous_output_index": 0,
837
+ "input_value": "0.00156113",
838
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
839
+ },
840
+ {
841
+ "input_index": 119,
842
+ "previous_txid": "7a616531392b55a3a07e4514cf93c4953ca21f59ffa6975cff8f755dd395fc5a",
843
+ "previous_output_index": 0,
844
+ "input_value": "0.00197065",
845
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
846
+ },
847
+ {
848
+ "input_index": 120,
849
+ "previous_txid": "32abb73a68fc28ac22d1cdda73e991d863efc2743983475029277f2c4216a06b",
850
+ "previous_output_index": 0,
851
+ "input_value": "0.00139902",
852
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
853
+ },
854
+ {
855
+ "input_index": 121,
856
+ "previous_txid": "931ddc65328de2fdaff90252b9a657e15f932be06e855c29da8aded6624a2684",
857
+ "previous_output_index": 0,
858
+ "input_value": "0.00157490",
859
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
860
+ },
861
+ {
862
+ "input_index": 122,
863
+ "previous_txid": "d861ebe9e43056e78dd5556620dda9754c323b4743d956d799b5dfb7fa8601bf",
864
+ "previous_output_index": 0,
865
+ "input_value": "0.00125883",
866
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
867
+ },
868
+ {
869
+ "input_index": 123,
870
+ "previous_txid": "e4c8ab3648f0cb32959fd1de07c1d3d41e8a8cfa2d917e1576105f061416d668",
871
+ "previous_output_index": 0,
872
+ "input_value": "0.00199204",
873
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
874
+ },
875
+ {
876
+ "input_index": 124,
877
+ "previous_txid": "46152f870f7077afb4368a7a210b7e621f022cc4c515a671d5ff13529883a95a",
878
+ "previous_output_index": 0,
879
+ "input_value": "0.00121431",
880
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
881
+ },
882
+ {
883
+ "input_index": 125,
884
+ "previous_txid": "963ddfc4375121d7ac55f153df68b5ebc92732ada9218c231d596c8d3800365e",
885
+ "previous_output_index": 0,
886
+ "input_value": "0.00171500",
887
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
888
+ },
889
+ {
890
+ "input_index": 126,
891
+ "previous_txid": "67ab1f903ee56969021256c1aebe26dc3aa16b7af4de6b841f872eb6810d57ef",
892
+ "previous_output_index": 0,
893
+ "input_value": "0.00161116",
894
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
895
+ },
896
+ {
897
+ "input_index": 127,
898
+ "previous_txid": "7ee1a5caa192ddeebf62efb87da5843ddd1d94fc8564cc223751a9fb5883121c",
899
+ "previous_output_index": 0,
900
+ "input_value": "0.00139201",
901
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
902
+ },
903
+ {
904
+ "input_index": 128,
905
+ "previous_txid": "ee9122fe151660730a481fba737d55b870ce899d019e0e66665fb86fc43c554b",
906
+ "previous_output_index": 0,
907
+ "input_value": "0.00193431",
908
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
909
+ },
910
+ {
911
+ "input_index": 129,
912
+ "previous_txid": "0ffcad78b77c39a2fd26b66ea9fb2583a8e2082ab82156275415107635e81f0b",
913
+ "previous_output_index": 0,
914
+ "input_value": "0.00183215",
915
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
916
+ },
917
+ {
918
+ "input_index": 130,
919
+ "previous_txid": "540ebee007d3be49202963ab3228539a92d0e59ccd58f43e63f61c887de4cbb4",
920
+ "previous_output_index": 0,
921
+ "input_value": "0.00124178",
922
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
923
+ },
924
+ {
925
+ "input_index": 131,
926
+ "previous_txid": "3862cc3d6e1265acd4f3a0bf3935bb1514671b30ffedc89efe1d695d48b2608e",
927
+ "previous_output_index": 0,
928
+ "input_value": "0.00184431",
929
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
930
+ },
931
+ {
932
+ "input_index": 132,
933
+ "previous_txid": "926b2e638b10083baabedf067b87a730079b65f5d7f20768b6d89170195a0084",
934
+ "previous_output_index": 0,
935
+ "input_value": "0.00153911",
936
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
937
+ },
938
+ {
939
+ "input_index": 133,
940
+ "previous_txid": "9e3e30f77e760ba65840f5788efb7354352be30c8ca4b7f5b6983c1283a902af",
941
+ "previous_output_index": 0,
942
+ "input_value": "0.00144019",
943
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
944
+ },
945
+ {
946
+ "input_index": 134,
947
+ "previous_txid": "34409e12b373a2140f8762be9b9f576c19b097fe546b092ae8cc68157b2ebcb6",
948
+ "previous_output_index": 0,
949
+ "input_value": "0.00128743",
950
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
951
+ },
952
+ {
953
+ "input_index": 135,
954
+ "previous_txid": "b0ec7fd3632766c89352e539eaaad4a9c95f6bd3d14c60da45b279b2b8214cf7",
955
+ "previous_output_index": 0,
956
+ "input_value": "0.00154987",
957
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
958
+ },
959
+ {
960
+ "input_index": 136,
961
+ "previous_txid": "53da102e29257ad839f85492557909d7e8b133695e71cddc09f35f87ee140d23",
962
+ "previous_output_index": 0,
963
+ "input_value": "0.00172568",
964
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
965
+ },
966
+ {
967
+ "input_index": 137,
968
+ "previous_txid": "aad6a5d596a2f0d6e58a5fc37d5149e20ba2a2271c2210dceddeeb05197ae555",
969
+ "previous_output_index": 0,
970
+ "input_value": "0.00132744",
971
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
972
+ },
973
+ {
974
+ "input_index": 138,
975
+ "previous_txid": "0c664b3a4291fee28d221f2654d134fa79c0b6ec60fa2bcf2c65bcffdf69914c",
976
+ "previous_output_index": 0,
977
+ "input_value": "0.00141540",
978
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
979
+ },
980
+ {
981
+ "input_index": 139,
982
+ "previous_txid": "a2665a2e4fe2c622e477841452db8a1d3c8582b5891eb469ccf43eaccf9e5c4f",
983
+ "previous_output_index": 0,
984
+ "input_value": "0.00132580",
985
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
986
+ },
987
+ {
988
+ "input_index": 140,
989
+ "previous_txid": "88e039fd09215d82677be995167f6f2f4c8e5885cc2b17ecd7f0abdf5bc90100",
990
+ "previous_output_index": 0,
991
+ "input_value": "0.00181592",
992
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
993
+ },
994
+ {
995
+ "input_index": 141,
996
+ "previous_txid": "c1fb64d2e9a2171d464c2741fdbc43775410e94164ff6ae6576aee5fbae09159",
997
+ "previous_output_index": 0,
998
+ "input_value": "0.00155994",
999
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1000
+ },
1001
+ {
1002
+ "input_index": 142,
1003
+ "previous_txid": "6f0c40edad4c93fc9df7f14ec65461c8c9ed287ae6997c1a1744a1dbb49a8786",
1004
+ "previous_output_index": 0,
1005
+ "input_value": "0.00136379",
1006
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1007
+ },
1008
+ {
1009
+ "input_index": 143,
1010
+ "previous_txid": "153aabef05484549e57134ab9bfcaafd60deb80861650408e842f40d18adccab",
1011
+ "previous_output_index": 0,
1012
+ "input_value": "0.00152871",
1013
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1014
+ },
1015
+ {
1016
+ "input_index": 144,
1017
+ "previous_txid": "fd888a6be2fb30ab81a4a7a0d6353e8da2c2b7dab13ef0a6abf86b854d7bc87a",
1018
+ "previous_output_index": 0,
1019
+ "input_value": "0.00152654",
1020
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1021
+ },
1022
+ {
1023
+ "input_index": 145,
1024
+ "previous_txid": "bb8e2a880c998b3c7a0d1b7597427d577e94f3a76440c37d6eb591021f4da9b0",
1025
+ "previous_output_index": 0,
1026
+ "input_value": "0.00123410",
1027
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1028
+ },
1029
+ {
1030
+ "input_index": 146,
1031
+ "previous_txid": "eca87b1c4d8f34229da278a4719191021b3c1518368b712d14716202e53e5ba5",
1032
+ "previous_output_index": 0,
1033
+ "input_value": "0.00138162",
1034
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1035
+ },
1036
+ {
1037
+ "input_index": 147,
1038
+ "previous_txid": "0703ab294eb5d7c8e99824fc1fbf8c3c9383ec408e4619f7709d059b082ae5a3",
1039
+ "previous_output_index": 0,
1040
+ "input_value": "0.00112311",
1041
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1042
+ },
1043
+ {
1044
+ "input_index": 148,
1045
+ "previous_txid": "fe6d32c009f6eac4e3db7b6107abe63d8cd1bacfb72207d5e14dd05567fe72ee",
1046
+ "previous_output_index": 0,
1047
+ "input_value": "0.00116674",
1048
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1049
+ },
1050
+ {
1051
+ "input_index": 149,
1052
+ "previous_txid": "aca747dbc3cecd7527c7f0e5f29497f2afcc153dd0428f9176140029ce00c22f",
1053
+ "previous_output_index": 0,
1054
+ "input_value": "0.00131633",
1055
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1056
+ },
1057
+ {
1058
+ "input_index": 150,
1059
+ "previous_txid": "c086e73031cb82398af966b2b1da636b3e8b31e1908a45d82453344596694e17",
1060
+ "previous_output_index": 0,
1061
+ "input_value": "0.00190463",
1062
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1063
+ },
1064
+ {
1065
+ "input_index": 151,
1066
+ "previous_txid": "626723a373b72f28be88be185d31cf4271ce37299f458527acb9495e6e61e330",
1067
+ "previous_output_index": 0,
1068
+ "input_value": "0.00139866",
1069
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1070
+ },
1071
+ {
1072
+ "input_index": 152,
1073
+ "previous_txid": "2d315e69f70d6b3e93d70449afd7a556951317a37f4fcce8b2c625f58cb894ca",
1074
+ "previous_output_index": 0,
1075
+ "input_value": "0.00162015",
1076
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1077
+ },
1078
+ {
1079
+ "input_index": 153,
1080
+ "previous_txid": "ba6b403b35524b6576e7b3f844ffb477257f41238ee5ce4e3d7d215c13ba7062",
1081
+ "previous_output_index": 0,
1082
+ "input_value": "0.00133527",
1083
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1084
+ },
1085
+ {
1086
+ "input_index": 154,
1087
+ "previous_txid": "1af47b79d112e03d3bffbc207f413659c97c7d54f1395a75c2631229f6ef1fba",
1088
+ "previous_output_index": 0,
1089
+ "input_value": "0.00179308",
1090
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1091
+ },
1092
+ {
1093
+ "input_index": 155,
1094
+ "previous_txid": "7abe4e8abd04579440ea299c02fb36516de6ff3409f63beeb052f4304177c890",
1095
+ "previous_output_index": 0,
1096
+ "input_value": "0.00172602",
1097
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1098
+ },
1099
+ {
1100
+ "input_index": 156,
1101
+ "previous_txid": "cc1b281facca85372f8d02a6bed2e2d8fa695c25a1fac3e1c47d27177f8d2d4a",
1102
+ "previous_output_index": 0,
1103
+ "input_value": "0.00120720",
1104
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1105
+ },
1106
+ {
1107
+ "input_index": 157,
1108
+ "previous_txid": "383b30397bcf0e139383761dac1cec63e66f03379e607a1238ad6d968c6b4583",
1109
+ "previous_output_index": 0,
1110
+ "input_value": "0.00121155",
1111
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1112
+ },
1113
+ {
1114
+ "input_index": 158,
1115
+ "previous_txid": "ddb50a7f882918ca6f513e2c8609d14ab40a97b21ed29cd9b405b50e1569e831",
1116
+ "previous_output_index": 0,
1117
+ "input_value": "0.00195549",
1118
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1119
+ },
1120
+ {
1121
+ "input_index": 159,
1122
+ "previous_txid": "45097f6f8f9f90930b78d5607d1800406a8d5d33e107d33de9b7d60a77253b84",
1123
+ "previous_output_index": 0,
1124
+ "input_value": "0.00137884",
1125
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1126
+ },
1127
+ {
1128
+ "input_index": 160,
1129
+ "previous_txid": "9b98cf6a11cc5e7188e65fdaec15b0ce4377e37c6df036e403e1ecd880e7ee95",
1130
+ "previous_output_index": 0,
1131
+ "input_value": "0.00177425",
1132
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1133
+ },
1134
+ {
1135
+ "input_index": 161,
1136
+ "previous_txid": "00e7320a0bad2ebe53f6ac95e7e8ec634ab86ab6d26d202589c6c358276e77ae",
1137
+ "previous_output_index": 0,
1138
+ "input_value": "0.00185208",
1139
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1140
+ },
1141
+ {
1142
+ "input_index": 162,
1143
+ "previous_txid": "0b525963837e3ecf6b95688bb449935740887481cad6f721226a381f0acb7048",
1144
+ "previous_output_index": 0,
1145
+ "input_value": "0.00129552",
1146
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1147
+ },
1148
+ {
1149
+ "input_index": 163,
1150
+ "previous_txid": "a9f7055599aea7fbd1955bedc9bdac46f2d769aabbe41cd0017e6001e54d1336",
1151
+ "previous_output_index": 0,
1152
+ "input_value": "0.00185189",
1153
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1154
+ },
1155
+ {
1156
+ "input_index": 164,
1157
+ "previous_txid": "489638ce71a99a47d07341b5d006f1ffbf014268c757ac1a35f7de3cd278052c",
1158
+ "previous_output_index": 0,
1159
+ "input_value": "0.00196660",
1160
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1161
+ },
1162
+ {
1163
+ "input_index": 165,
1164
+ "previous_txid": "d3f87d7075802cd588cced201efcfdbc4e9b5c3bf1ba25c36b3d56f8ce8a554e",
1165
+ "previous_output_index": 0,
1166
+ "input_value": "0.00198939",
1167
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1168
+ },
1169
+ {
1170
+ "input_index": 166,
1171
+ "previous_txid": "3d9927b9dd557cdbd70ba52f4bef864b8d47ca108c189aca5178671c1849d3bd",
1172
+ "previous_output_index": 0,
1173
+ "input_value": "0.00136923",
1174
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1175
+ },
1176
+ {
1177
+ "input_index": 167,
1178
+ "previous_txid": "04c28151d932f7c620d91f4e366a4e4fa834f064c869f7a38dc47a353339cd7d",
1179
+ "previous_output_index": 0,
1180
+ "input_value": "0.00165070",
1181
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1182
+ },
1183
+ {
1184
+ "input_index": 168,
1185
+ "previous_txid": "3272c11004f6510b39a4f69e7ab5057b8b4f5c019d97a4209d8531867349d5c1",
1186
+ "previous_output_index": 0,
1187
+ "input_value": "0.00154581",
1188
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1189
+ },
1190
+ {
1191
+ "input_index": 169,
1192
+ "previous_txid": "7ba8159de9334cdc478e55d1dddd04b7109e98a991fd30a69d651745148f093e",
1193
+ "previous_output_index": 0,
1194
+ "input_value": "0.00133160",
1195
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1196
+ },
1197
+ {
1198
+ "input_index": 170,
1199
+ "previous_txid": "114ad9f301a2071fc8cf2302f1375e7e0f7ffdbd95f0de57c36b000269fd37d7",
1200
+ "previous_output_index": 0,
1201
+ "input_value": "0.00178058",
1202
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1203
+ },
1204
+ {
1205
+ "input_index": 171,
1206
+ "previous_txid": "b408175ddf25fcb2255c5c600fa87ff3374e2b41942b2df425fffd93d1a7801c",
1207
+ "previous_output_index": 0,
1208
+ "input_value": "0.00196317",
1209
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1210
+ },
1211
+ {
1212
+ "input_index": 172,
1213
+ "previous_txid": "34f5719286d2d2f8152ef406408873cb86ad2cbeda9facb689d17af9699eaccb",
1214
+ "previous_output_index": 0,
1215
+ "input_value": "0.00182419",
1216
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1217
+ },
1218
+ {
1219
+ "input_index": 173,
1220
+ "previous_txid": "993d32b631b9f407105ace3ee5885e82db829e135c82ac7834303d7453418f6b",
1221
+ "previous_output_index": 0,
1222
+ "input_value": "0.00119243",
1223
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1224
+ },
1225
+ {
1226
+ "input_index": 174,
1227
+ "previous_txid": "a49eff30ba9057b1a6dd03668e21a9483a08b6a400a5ebdb76658a2e45b950ca",
1228
+ "previous_output_index": 0,
1229
+ "input_value": "0.00175295",
1230
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1231
+ },
1232
+ {
1233
+ "input_index": 175,
1234
+ "previous_txid": "e8b077676322041ce2e993450532408e2b52afedff568ac62256dbec9ae01741",
1235
+ "previous_output_index": 0,
1236
+ "input_value": "0.00120011",
1237
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1238
+ },
1239
+ {
1240
+ "input_index": 176,
1241
+ "previous_txid": "43ef123387a185a7c778429b919bce1a7d84765eb7fc25055cbfea513092edfc",
1242
+ "previous_output_index": 0,
1243
+ "input_value": "0.00174183",
1244
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1245
+ },
1246
+ {
1247
+ "input_index": 177,
1248
+ "previous_txid": "18dfb97400c648e26d4775610310d09bf2ac7131a2ab2e4ef63ba0238132577d",
1249
+ "previous_output_index": 0,
1250
+ "input_value": "0.00163746",
1251
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1252
+ },
1253
+ {
1254
+ "input_index": 178,
1255
+ "previous_txid": "74796ea0a479c9f10aa0d592fe270c0cc6ce66800f18a4abac1b725ebbd20ad9",
1256
+ "previous_output_index": 0,
1257
+ "input_value": "0.00113505",
1258
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1259
+ },
1260
+ {
1261
+ "input_index": 179,
1262
+ "previous_txid": "2cd44d9018aec26adebd409c6311018d2c6103f26d9c57151aee942dd2080a37",
1263
+ "previous_output_index": 0,
1264
+ "input_value": "0.00150581",
1265
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1266
+ },
1267
+ {
1268
+ "input_index": 180,
1269
+ "previous_txid": "d65caa44e8b217c85759091dc23c2aaea67966fd2bb70644310c0f11fe098197",
1270
+ "previous_output_index": 0,
1271
+ "input_value": "0.00124611",
1272
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1273
+ },
1274
+ {
1275
+ "input_index": 181,
1276
+ "previous_txid": "f539389879e1ed3e4eea059e01192843f9326b8d88addaa12bf9719b87bffb6f",
1277
+ "previous_output_index": 0,
1278
+ "input_value": "0.00161872",
1279
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1280
+ },
1281
+ {
1282
+ "input_index": 182,
1283
+ "previous_txid": "af4a29cb847f82eed170772f70041f59e3f212196495e9dddedc7863b6382648",
1284
+ "previous_output_index": 0,
1285
+ "input_value": "0.00134780",
1286
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1287
+ },
1288
+ {
1289
+ "input_index": 183,
1290
+ "previous_txid": "816114266d72ebf5c4af524f77ed37fe0e48484c2753859d7c351f48c48e9512",
1291
+ "previous_output_index": 0,
1292
+ "input_value": "0.00140807",
1293
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1294
+ },
1295
+ {
1296
+ "input_index": 184,
1297
+ "previous_txid": "ee687fde06324a42c6a707bf1359587187fef12ec575c52de6256694a5125197",
1298
+ "previous_output_index": 0,
1299
+ "input_value": "0.00162629",
1300
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1301
+ },
1302
+ {
1303
+ "input_index": 185,
1304
+ "previous_txid": "c51a05ae120d18f193f03d50a73fb4008b87e1ea2b7909466b6f195ba63aa3a5",
1305
+ "previous_output_index": 0,
1306
+ "input_value": "0.00167864",
1307
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1308
+ },
1309
+ {
1310
+ "input_index": 186,
1311
+ "previous_txid": "b3dd37f389d0e61029bfb47145bac86ad659bc6f7987df0dfd85a61017a7dae4",
1312
+ "previous_output_index": 0,
1313
+ "input_value": "0.00160289",
1314
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1315
+ },
1316
+ {
1317
+ "input_index": 187,
1318
+ "previous_txid": "fe752f926a5271216ee76237f75c3e893bb8faf7f00f14865aa83da733722106",
1319
+ "previous_output_index": 0,
1320
+ "input_value": "0.00157417",
1321
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1322
+ },
1323
+ {
1324
+ "input_index": 188,
1325
+ "previous_txid": "fed41ff4b210511fbaf98b6a1799d3eb02200ff84e3732a322596feb0fba3046",
1326
+ "previous_output_index": 0,
1327
+ "input_value": "0.00160179",
1328
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1329
+ },
1330
+ {
1331
+ "input_index": 189,
1332
+ "previous_txid": "d02ce1c02c9b0a74261a45470028dfb45c51e003086fa2f08f5eef0993893291",
1333
+ "previous_output_index": 0,
1334
+ "input_value": "0.00115454",
1335
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1336
+ },
1337
+ {
1338
+ "input_index": 190,
1339
+ "previous_txid": "eef7ce8855892f7fc15defe3970300b8b1c0fb5b1674b7d65d88bf13fb227b61",
1340
+ "previous_output_index": 0,
1341
+ "input_value": "0.00131077",
1342
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1343
+ },
1344
+ {
1345
+ "input_index": 191,
1346
+ "previous_txid": "45f102024929d011f77989e2ad26ebd58faf2760059e1495744186259aa33146",
1347
+ "previous_output_index": 0,
1348
+ "input_value": "0.00125696",
1349
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1350
+ },
1351
+ {
1352
+ "input_index": 192,
1353
+ "previous_txid": "311e9a96c92a500a76f61da1c1aa312e38c757442a1c16d6ba037eaa4429d1e8",
1354
+ "previous_output_index": 0,
1355
+ "input_value": "0.00194093",
1356
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1357
+ },
1358
+ {
1359
+ "input_index": 193,
1360
+ "previous_txid": "0b27656af0a273780c5032ebd65beb7169d2064e23c8023c5b78fd79fcfcc937",
1361
+ "previous_output_index": 0,
1362
+ "input_value": "0.00190074",
1363
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1364
+ },
1365
+ {
1366
+ "input_index": 194,
1367
+ "previous_txid": "535978ca37c9e45b49fb972424ac63520729e0c161c0b2510ff59825909859b5",
1368
+ "previous_output_index": 0,
1369
+ "input_value": "0.00192589",
1370
+ "spending_address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q"
1371
+ }
1372
+ ],
1373
+ "outputs": [
1374
+ {
1375
+ "output_index": 0,
1376
+ "output_category": "user-specified",
1377
+ "output_value": "0.26465533",
1378
+ "receiving_address": "QcyH5G5jr36pFvZy99eRi9iZsmSzEztLHn"
1379
+ }
1380
+ ],
1381
+ "input_address_data": [
1382
+ {
1383
+ "required_signatures": 4,
1384
+ "public_keys": [
1385
+ "032f7c8f09c3876c666343ad9de86e8b71b1d704863dee8205011ac5ad85a8a7d6",
1386
+ "02510e29d51e9a4268e6a5253c1fbd8144857945b82acb0accfc235cc7ca36da11",
1387
+ "0201a819bf549c253c4397bdd1535374de39e9bc278f637afdc27642d52cf79139",
1388
+ "039e3aa9ea182ccdaff2d8d150010b27cc4765c1d55ce674e52631af7376354d62",
1389
+ "03ee980e6334142342fcd9e6facfecfa139981e2276584c91d6a9739d533ac99fc"
1390
+ ],
1391
+ "address": "QjJuzKdYxUg7teprtSNiH5vir5ufUspX7q",
1392
+ "address_type": "P2SH"
1393
+ }
1394
+ ],
1395
+ "estimated_tx_size": 99719
1396
+ }
1397
+ }