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,1809 @@
1
+ {
2
+ "status": "success",
3
+ "data": {
4
+ "network": "LTCTEST",
5
+ "tx_type": "dtrust",
6
+ "inputs": [
7
+ {
8
+ "input_index": 0,
9
+ "previous_txid": "e2a82ca0d5fad1dbad4077f4b59f768cd44eb7e1d325466bab68b0f29389187b",
10
+ "previous_output_index": 1,
11
+ "input_value": "0.00135356",
12
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
13
+ },
14
+ {
15
+ "input_index": 1,
16
+ "previous_txid": "8dcab960913d04231ac8d47aca73bace13bfff3ca9ec1cb04226993e31a2f299",
17
+ "previous_output_index": 1,
18
+ "input_value": "0.00192300",
19
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
20
+ },
21
+ {
22
+ "input_index": 2,
23
+ "previous_txid": "05d16cf4942b40937eb9a311861e680861c605468263afa8e1be1c18377857e8",
24
+ "previous_output_index": 1,
25
+ "input_value": "0.00170960",
26
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
27
+ },
28
+ {
29
+ "input_index": 3,
30
+ "previous_txid": "5b0fcdb3eb82e5d8f5bdac17a9b8cf9d6c87ac0c42cfca8b719feb5b7783887f",
31
+ "previous_output_index": 1,
32
+ "input_value": "0.00191467",
33
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
34
+ },
35
+ {
36
+ "input_index": 4,
37
+ "previous_txid": "c60c105af7dd1dbaef247bf2719a28b932bf1ac585caa5f9b74028d10fd3958e",
38
+ "previous_output_index": 1,
39
+ "input_value": "0.00110190",
40
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
41
+ },
42
+ {
43
+ "input_index": 5,
44
+ "previous_txid": "ba96ee3052f72cf2fb1bd4fee95381cdf559c48903c5d479d6c4d4d4782607ee",
45
+ "previous_output_index": 1,
46
+ "input_value": "0.00162833",
47
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
48
+ },
49
+ {
50
+ "input_index": 6,
51
+ "previous_txid": "0f37cdcb09ff7e2d83257a7486ec3dd30ff25d447db217afff42689ff184eb95",
52
+ "previous_output_index": 1,
53
+ "input_value": "0.00148610",
54
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
55
+ },
56
+ {
57
+ "input_index": 7,
58
+ "previous_txid": "0e2030c1830a4ed9cfb614fa4aa7998931c05d120e600319f802e549d18570a7",
59
+ "previous_output_index": 1,
60
+ "input_value": "0.00169858",
61
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
62
+ },
63
+ {
64
+ "input_index": 8,
65
+ "previous_txid": "02164cf70d917aafab6a055069d56442788e70dbca5a9902484a79f2a17d6f28",
66
+ "previous_output_index": 1,
67
+ "input_value": "0.00162585",
68
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
69
+ },
70
+ {
71
+ "input_index": 9,
72
+ "previous_txid": "b6ec6156a6fcbd6ad1a88d82afd21afc27a8383482c0c37ea5a4b27612ea0291",
73
+ "previous_output_index": 1,
74
+ "input_value": "0.00130810",
75
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
76
+ },
77
+ {
78
+ "input_index": 10,
79
+ "previous_txid": "7fb5d17cfa3e14e8efd3356035cbd0c3b742cf5a5d735877291c52dbe6404efc",
80
+ "previous_output_index": 1,
81
+ "input_value": "0.00166670",
82
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
83
+ },
84
+ {
85
+ "input_index": 11,
86
+ "previous_txid": "99c0fffb74a8b47fad70655eb75c069314ee641923d8642e31d13a8dd77a2017",
87
+ "previous_output_index": 1,
88
+ "input_value": "0.00157159",
89
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
90
+ },
91
+ {
92
+ "input_index": 12,
93
+ "previous_txid": "b5a815415413839907c4bf723a194786247ed0c8796dccf312254834d7ec345d",
94
+ "previous_output_index": 1,
95
+ "input_value": "0.00118561",
96
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
97
+ },
98
+ {
99
+ "input_index": 13,
100
+ "previous_txid": "e5ba29e5b3f59c7981787081eb120c175be9eb8a9338dcc6fc8b87965c8db3e7",
101
+ "previous_output_index": 1,
102
+ "input_value": "0.00112282",
103
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
104
+ },
105
+ {
106
+ "input_index": 14,
107
+ "previous_txid": "8351075d828ec5a28d9a8978074280ff564f7590daff4a12e8de8ad4a751db9e",
108
+ "previous_output_index": 1,
109
+ "input_value": "0.00141620",
110
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
111
+ },
112
+ {
113
+ "input_index": 15,
114
+ "previous_txid": "a51fff8d025073f26089bb26bb85f8f491f6ef1eb003e9a6d1bc6502cb08ca23",
115
+ "previous_output_index": 1,
116
+ "input_value": "0.00170352",
117
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
118
+ },
119
+ {
120
+ "input_index": 16,
121
+ "previous_txid": "2a64f6413cdeb7cf322f37d4294db7db6f853e87aae06fcb2b7b1a1eabe963f0",
122
+ "previous_output_index": 1,
123
+ "input_value": "0.00141580",
124
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
125
+ },
126
+ {
127
+ "input_index": 17,
128
+ "previous_txid": "3f0c4917fe86f11452387a8b552b06fe45a96ab1df6ccbcc29127cf250391a8f",
129
+ "previous_output_index": 1,
130
+ "input_value": "0.00169770",
131
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
132
+ },
133
+ {
134
+ "input_index": 18,
135
+ "previous_txid": "db1233426e189259e6aac9a4c0096adb990057003bf912049fafeafc543e0ad2",
136
+ "previous_output_index": 1,
137
+ "input_value": "0.00114597",
138
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
139
+ },
140
+ {
141
+ "input_index": 19,
142
+ "previous_txid": "b917bbf0fd48cb36d7dbb1bd4819e58424a0d9010d4f3200cc0e9d8655c8bfed",
143
+ "previous_output_index": 1,
144
+ "input_value": "0.00190830",
145
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
146
+ },
147
+ {
148
+ "input_index": 20,
149
+ "previous_txid": "7f75dee1ac4874c7a5cf774a652ade0f5b25b57e9a11164695b190c100dfe403",
150
+ "previous_output_index": 1,
151
+ "input_value": "0.00123323",
152
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
153
+ },
154
+ {
155
+ "input_index": 21,
156
+ "previous_txid": "94be7638748e964fcffd307f5766676e232264470059b75971a71c8f6b7ad51d",
157
+ "previous_output_index": 1,
158
+ "input_value": "0.00120406",
159
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
160
+ },
161
+ {
162
+ "input_index": 22,
163
+ "previous_txid": "2a4fca9914a51fa0748ababaf8ef3ea8da36817cc0ccdd45947aca9f52017bb7",
164
+ "previous_output_index": 1,
165
+ "input_value": "0.00150378",
166
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
167
+ },
168
+ {
169
+ "input_index": 23,
170
+ "previous_txid": "a2c1c61ba33a9e42a8ae7d7a6410f1b7bc4da4b0ec9b2c1ad0c71c51827f74f1",
171
+ "previous_output_index": 1,
172
+ "input_value": "0.00186181",
173
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
174
+ },
175
+ {
176
+ "input_index": 24,
177
+ "previous_txid": "2e085307fc1cdca54aaa33e14b4fbf9d546c3954de206321d3394a43c40dc807",
178
+ "previous_output_index": 1,
179
+ "input_value": "0.00123886",
180
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
181
+ },
182
+ {
183
+ "input_index": 25,
184
+ "previous_txid": "2658cdc0b83c92e72b58f8def9157cbdd6cdcf84ec24c90acd4c7dffcfecd36b",
185
+ "previous_output_index": 1,
186
+ "input_value": "0.00196370",
187
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
188
+ },
189
+ {
190
+ "input_index": 26,
191
+ "previous_txid": "5f262c51a17f5aad1afa5d414abcf69a884e207d2aafb2bd86205bcc11f4d315",
192
+ "previous_output_index": 1,
193
+ "input_value": "0.00188827",
194
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
195
+ },
196
+ {
197
+ "input_index": 27,
198
+ "previous_txid": "ded50f5a5f70870b878e8c6d71d57aad4b30ccc72d39fa2ed958bb4f2cf32f10",
199
+ "previous_output_index": 1,
200
+ "input_value": "0.00142939",
201
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
202
+ },
203
+ {
204
+ "input_index": 28,
205
+ "previous_txid": "15bdec17715279bd0f9d68532b9e9ee161d2e645b38a45a89b5fbd9ac43bcf6b",
206
+ "previous_output_index": 1,
207
+ "input_value": "0.00180960",
208
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
209
+ },
210
+ {
211
+ "input_index": 29,
212
+ "previous_txid": "f5de7e67207a0d58923a535e29f62513fcb4a7313ed72f5babd6b68ad5cf11f6",
213
+ "previous_output_index": 1,
214
+ "input_value": "0.00158972",
215
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
216
+ },
217
+ {
218
+ "input_index": 30,
219
+ "previous_txid": "a0ebf3398e618a29eca6571b7ee5d8214253a65def331140a409a4b8b0fa103f",
220
+ "previous_output_index": 1,
221
+ "input_value": "0.00170277",
222
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
223
+ },
224
+ {
225
+ "input_index": 31,
226
+ "previous_txid": "c4a312b6c46e537fb083d48a9e1a236cedfa0f56c70f77104299bc5b6b88762d",
227
+ "previous_output_index": 1,
228
+ "input_value": "0.00145505",
229
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
230
+ },
231
+ {
232
+ "input_index": 32,
233
+ "previous_txid": "042acdfc910d1be3f3163465d2802e72b90da7318c20189802427495e2d899e3",
234
+ "previous_output_index": 1,
235
+ "input_value": "0.00162397",
236
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
237
+ },
238
+ {
239
+ "input_index": 33,
240
+ "previous_txid": "a15786dd9054639fbe7a619efd6caad67de5122edb040b714cbb653e3a18b22d",
241
+ "previous_output_index": 1,
242
+ "input_value": "0.00196044",
243
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
244
+ },
245
+ {
246
+ "input_index": 34,
247
+ "previous_txid": "3ba51454f275dda88c9b90019f02fe2cc4ec0a411931db468f1f503a21742e9d",
248
+ "previous_output_index": 1,
249
+ "input_value": "0.00159560",
250
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
251
+ },
252
+ {
253
+ "input_index": 35,
254
+ "previous_txid": "6c7b2b4791bc2de12ce4e0a9e5593cfd54f1267daff7f557fc05f7859e804ef2",
255
+ "previous_output_index": 1,
256
+ "input_value": "0.00161357",
257
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
258
+ },
259
+ {
260
+ "input_index": 36,
261
+ "previous_txid": "cfbde47a0c627375f63a87f7aa4d4136d4ead034344bed46df78cc29e7df08a1",
262
+ "previous_output_index": 1,
263
+ "input_value": "0.00122570",
264
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
265
+ },
266
+ {
267
+ "input_index": 37,
268
+ "previous_txid": "fd3baec92744256faa6685184b083d0f931d2072fd19506cbbb23f6a12190d65",
269
+ "previous_output_index": 1,
270
+ "input_value": "0.00141070",
271
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
272
+ },
273
+ {
274
+ "input_index": 38,
275
+ "previous_txid": "6dcadd5daa4e9cfcad399fe0cda30060e46d6c9cecad04a3826c53dc739f1e83",
276
+ "previous_output_index": 1,
277
+ "input_value": "0.00180912",
278
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
279
+ },
280
+ {
281
+ "input_index": 39,
282
+ "previous_txid": "20900687df830590f67eedf8fcba973dee2598e8314c67df3dcbc06017b16513",
283
+ "previous_output_index": 1,
284
+ "input_value": "0.00154570",
285
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
286
+ },
287
+ {
288
+ "input_index": 40,
289
+ "previous_txid": "6b0f98d2f29c66f02a3053e6d0a0083390e6ef1caf38040ef0da5b569ab26c88",
290
+ "previous_output_index": 1,
291
+ "input_value": "0.00165798",
292
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
293
+ },
294
+ {
295
+ "input_index": 41,
296
+ "previous_txid": "48614c2ccee80596923e375eff21b8c95a11b11838970576e1bdd39108714a33",
297
+ "previous_output_index": 1,
298
+ "input_value": "0.00130725",
299
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
300
+ },
301
+ {
302
+ "input_index": 42,
303
+ "previous_txid": "1b0d980bbfee8e24c95aba6759a3bdd0d0365cd8b1ff6ef61dcacb319ee2afec",
304
+ "previous_output_index": 1,
305
+ "input_value": "0.00130248",
306
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
307
+ },
308
+ {
309
+ "input_index": 43,
310
+ "previous_txid": "45187219142aa2af41fcef059bee03cb39685882322db32391e26d37b2c5c1eb",
311
+ "previous_output_index": 1,
312
+ "input_value": "0.00130109",
313
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
314
+ },
315
+ {
316
+ "input_index": 44,
317
+ "previous_txid": "ec79d24adbb9484c64f157916041fb93de5b0c33277a6dfaa775069c700ea8ee",
318
+ "previous_output_index": 1,
319
+ "input_value": "0.00159172",
320
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
321
+ },
322
+ {
323
+ "input_index": 45,
324
+ "previous_txid": "f641140ddcb1a2c4c7a3d693eace3fdd66aa4f8aa3b28148c4713ed7c4066b27",
325
+ "previous_output_index": 1,
326
+ "input_value": "0.00132105",
327
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
328
+ },
329
+ {
330
+ "input_index": 46,
331
+ "previous_txid": "1f67d74e6bb746ae5c1970a0513d4ca16c0c4384c562c10eb2805e0c27d0bb0a",
332
+ "previous_output_index": 1,
333
+ "input_value": "0.00175826",
334
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
335
+ },
336
+ {
337
+ "input_index": 47,
338
+ "previous_txid": "4357678a91c5f9c50332044b6485e4b641b2e39cddfbbd37c041d67c93a8ee3d",
339
+ "previous_output_index": 1,
340
+ "input_value": "0.00116140",
341
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
342
+ },
343
+ {
344
+ "input_index": 48,
345
+ "previous_txid": "4024ce22a2fe9119980a44f3492d91a220463abc0ce9850010e5b3fa533ee99a",
346
+ "previous_output_index": 1,
347
+ "input_value": "0.00193659",
348
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
349
+ },
350
+ {
351
+ "input_index": 49,
352
+ "previous_txid": "701707d97d7c9009d728c29549b9c5a08af9a607e43022c15144a1b19a4402a3",
353
+ "previous_output_index": 1,
354
+ "input_value": "0.00148214",
355
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
356
+ },
357
+ {
358
+ "input_index": 50,
359
+ "previous_txid": "a04e6715da61106ca244582d8ba25f6aa14cee984b6f9b688429ce5e1698569b",
360
+ "previous_output_index": 1,
361
+ "input_value": "0.00174578",
362
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
363
+ },
364
+ {
365
+ "input_index": 51,
366
+ "previous_txid": "9ad2172b2271eb94516f922d79c77aef28d0f130ed1e051da5def13a33004f5d",
367
+ "previous_output_index": 1,
368
+ "input_value": "0.00187241",
369
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
370
+ },
371
+ {
372
+ "input_index": 52,
373
+ "previous_txid": "6c10830df8cdba6ce89f1877d80bd3e06d830741d120732dd317a1e96217e53d",
374
+ "previous_output_index": 1,
375
+ "input_value": "0.00133108",
376
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
377
+ },
378
+ {
379
+ "input_index": 53,
380
+ "previous_txid": "a4d4c615149660dec1d9b0b45acded5fa8a5edc23d398cb907ef803668e0d4d3",
381
+ "previous_output_index": 1,
382
+ "input_value": "0.00152096",
383
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
384
+ },
385
+ {
386
+ "input_index": 54,
387
+ "previous_txid": "dbc4b3dec67cd4bfc1bb9b0cb6b6bec54c750d05d966c1dc8f5c2ac8b0c45aa7",
388
+ "previous_output_index": 1,
389
+ "input_value": "0.00152291",
390
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
391
+ },
392
+ {
393
+ "input_index": 55,
394
+ "previous_txid": "9b8692eb4e29dcbf904417b51c3352bf9cb9ea3fc9f301794ce68a8c526166a4",
395
+ "previous_output_index": 1,
396
+ "input_value": "0.00180202",
397
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
398
+ },
399
+ {
400
+ "input_index": 56,
401
+ "previous_txid": "45d5954865da52e92d79280333e3381afab7f5f5e065fbd6d19d159e40e0ed47",
402
+ "previous_output_index": 1,
403
+ "input_value": "0.00112741",
404
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
405
+ },
406
+ {
407
+ "input_index": 57,
408
+ "previous_txid": "f683fc0dcdfa0e60fd4227ff2241665cd821d941a5ef11b1e8c45a5f175df4d0",
409
+ "previous_output_index": 1,
410
+ "input_value": "0.00140869",
411
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
412
+ },
413
+ {
414
+ "input_index": 58,
415
+ "previous_txid": "9ddc33e70de07b9aedc5dfa0ceab1f158ba7002a2ba96fc5a1c7e7821aeeee82",
416
+ "previous_output_index": 1,
417
+ "input_value": "0.00147177",
418
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
419
+ },
420
+ {
421
+ "input_index": 59,
422
+ "previous_txid": "36dbe929d3bfc7ff78544f8c91b55aadc5d860d198be65f85f0b4eb743b91db2",
423
+ "previous_output_index": 1,
424
+ "input_value": "0.00145060",
425
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
426
+ },
427
+ {
428
+ "input_index": 60,
429
+ "previous_txid": "37145ced60d13be67ead27ff82951169dadd81e220c6a8e39c641aceab7a4e84",
430
+ "previous_output_index": 1,
431
+ "input_value": "0.00140624",
432
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
433
+ },
434
+ {
435
+ "input_index": 61,
436
+ "previous_txid": "3e6f362643c9d23f3e757701889218a2890ac7ca21ede2cd7ad1a6d82a7bebab",
437
+ "previous_output_index": 1,
438
+ "input_value": "0.00133239",
439
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
440
+ },
441
+ {
442
+ "input_index": 62,
443
+ "previous_txid": "7cb497bccb67aa9b9009460a36f46b6a52c6cefb1679bc382e2ff2c452e82c72",
444
+ "previous_output_index": 1,
445
+ "input_value": "0.00198670",
446
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
447
+ },
448
+ {
449
+ "input_index": 63,
450
+ "previous_txid": "14ac9856dee7b138d3c7dcb5af4cce54737c0674a27761b7afc42635eede3899",
451
+ "previous_output_index": 1,
452
+ "input_value": "0.00110010",
453
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
454
+ },
455
+ {
456
+ "input_index": 64,
457
+ "previous_txid": "698ad89c4ce903015a4e4d36c231ffd14d96903f17838e0f0314b806ccbb3eab",
458
+ "previous_output_index": 1,
459
+ "input_value": "0.00125836",
460
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
461
+ },
462
+ {
463
+ "input_index": 65,
464
+ "previous_txid": "fc834ed714323ab6b8d495edeb50e32a18f458d52c1646d71e2d2d9aed75d5f1",
465
+ "previous_output_index": 1,
466
+ "input_value": "0.00136466",
467
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
468
+ },
469
+ {
470
+ "input_index": 66,
471
+ "previous_txid": "dcb0e7c4f67d97f946649ac73588205fee3d7639a452d0f4bb83b15fc938adc8",
472
+ "previous_output_index": 1,
473
+ "input_value": "0.00163970",
474
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
475
+ },
476
+ {
477
+ "input_index": 67,
478
+ "previous_txid": "348c466eb9648d6ba1cea65716e72c403ff03536342a8c1fbe1fbe98ffd47b6d",
479
+ "previous_output_index": 1,
480
+ "input_value": "0.00199348",
481
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
482
+ },
483
+ {
484
+ "input_index": 68,
485
+ "previous_txid": "4d2ed5f143493ccb0a470fd7c358623cdfd5fcc5f13c5813e308a40a9c0c4152",
486
+ "previous_output_index": 1,
487
+ "input_value": "0.00194613",
488
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
489
+ },
490
+ {
491
+ "input_index": 69,
492
+ "previous_txid": "acda28eb2daad2a26b2a945c1a8b48dbda20255e2818f6a84c59540fa226ee01",
493
+ "previous_output_index": 1,
494
+ "input_value": "0.00121709",
495
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
496
+ },
497
+ {
498
+ "input_index": 70,
499
+ "previous_txid": "448f145d7bc9917fe17497cc07d8decc014ca86fa99a9c90666848fa7c3857ab",
500
+ "previous_output_index": 1,
501
+ "input_value": "0.00171141",
502
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
503
+ },
504
+ {
505
+ "input_index": 71,
506
+ "previous_txid": "7c9ff97a007d7123cf1fcca1a030a6d0f09043731992aa1904444fcfd1bfc340",
507
+ "previous_output_index": 1,
508
+ "input_value": "0.00194600",
509
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
510
+ },
511
+ {
512
+ "input_index": 72,
513
+ "previous_txid": "de72e45b1c7f23463e5aa1850285f1a816039bf6687d9f0bbb67ac068664660a",
514
+ "previous_output_index": 1,
515
+ "input_value": "0.00129232",
516
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
517
+ },
518
+ {
519
+ "input_index": 73,
520
+ "previous_txid": "ff88b9a797b6aef7869622d7e9128cc1aa12ddd646346b5042ee024971386678",
521
+ "previous_output_index": 1,
522
+ "input_value": "0.00141071",
523
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
524
+ },
525
+ {
526
+ "input_index": 74,
527
+ "previous_txid": "0667532ac9317a2ae1502bca727ba01a7c5520bd9e46182fa6699503a5c1e99f",
528
+ "previous_output_index": 1,
529
+ "input_value": "0.00149470",
530
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
531
+ },
532
+ {
533
+ "input_index": 75,
534
+ "previous_txid": "198d0423e1ddf76dcf617a27e4cf9e08a80bde63bca3a0e65f1b8a8b7249affb",
535
+ "previous_output_index": 1,
536
+ "input_value": "0.00159789",
537
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
538
+ },
539
+ {
540
+ "input_index": 76,
541
+ "previous_txid": "1a0f33ec733e08271ec06383a32023f6e4bbd59813d97e23191abae4f3511734",
542
+ "previous_output_index": 1,
543
+ "input_value": "0.00142751",
544
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
545
+ },
546
+ {
547
+ "input_index": 77,
548
+ "previous_txid": "62fcc5418d0eda4ce5f6493777f93a95c6f14f41a7e425627ef4842685d3d82d",
549
+ "previous_output_index": 1,
550
+ "input_value": "0.00176975",
551
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
552
+ },
553
+ {
554
+ "input_index": 78,
555
+ "previous_txid": "0897f73c7284692c1083ada30f58c758e25c2852f66bbb420244440d98aae6ba",
556
+ "previous_output_index": 1,
557
+ "input_value": "0.00150253",
558
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
559
+ },
560
+ {
561
+ "input_index": 79,
562
+ "previous_txid": "ac6af56798cddfbf03e1e6c8f68f806237e47f60731f5917a8f9df7d461c8f43",
563
+ "previous_output_index": 1,
564
+ "input_value": "0.00193137",
565
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
566
+ },
567
+ {
568
+ "input_index": 80,
569
+ "previous_txid": "eded55cedb81683f25a4d97cac194f6c19e499bfa8e1ca2a2323e541c1125a03",
570
+ "previous_output_index": 1,
571
+ "input_value": "0.00133532",
572
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
573
+ },
574
+ {
575
+ "input_index": 81,
576
+ "previous_txid": "145c8f085d0a2c2c46a97adf1d411f3436888c9144985fd191ee302b7ffaa25b",
577
+ "previous_output_index": 1,
578
+ "input_value": "0.00163856",
579
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
580
+ },
581
+ {
582
+ "input_index": 82,
583
+ "previous_txid": "7a0c0d015422f693762f409879e6f24b49f6a76e575f8c5241dce34cbc2cc429",
584
+ "previous_output_index": 1,
585
+ "input_value": "0.00178826",
586
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
587
+ },
588
+ {
589
+ "input_index": 83,
590
+ "previous_txid": "31f1e30fb532e686b66354023cab2a07b42644badc681021264a8b96985a98ce",
591
+ "previous_output_index": 1,
592
+ "input_value": "0.00166498",
593
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
594
+ },
595
+ {
596
+ "input_index": 84,
597
+ "previous_txid": "b582fe0bf66d450b942b6f5dba415020d50f8db70b79b6d16140e5084edaafa4",
598
+ "previous_output_index": 1,
599
+ "input_value": "0.00164873",
600
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
601
+ },
602
+ {
603
+ "input_index": 85,
604
+ "previous_txid": "b236c2455e85d5218dafaa6b31907797c1c29ea172d13dcb5538235ded88cb15",
605
+ "previous_output_index": 1,
606
+ "input_value": "0.00113582",
607
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
608
+ },
609
+ {
610
+ "input_index": 86,
611
+ "previous_txid": "73801ec5664774ba1691a58d2ae57289e3377e45917fdd23079cb10585be7759",
612
+ "previous_output_index": 1,
613
+ "input_value": "0.00194239",
614
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
615
+ },
616
+ {
617
+ "input_index": 87,
618
+ "previous_txid": "0b7bc10c8af14a8241c30878dda142f3ac4763552bcb6692ddd8442030f49c89",
619
+ "previous_output_index": 1,
620
+ "input_value": "0.00151581",
621
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
622
+ },
623
+ {
624
+ "input_index": 88,
625
+ "previous_txid": "20a4e105106ab92ce414040f7741cc236c059bc0f95bef78e597f61854d0caa0",
626
+ "previous_output_index": 1,
627
+ "input_value": "0.00155010",
628
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
629
+ },
630
+ {
631
+ "input_index": 89,
632
+ "previous_txid": "6eb598c26913b0b15a47e0d3ea9a0266b2ee74f9a96b655507b7091d7b97741d",
633
+ "previous_output_index": 1,
634
+ "input_value": "0.00116150",
635
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
636
+ },
637
+ {
638
+ "input_index": 90,
639
+ "previous_txid": "9ff7798c2cc9f6d7f8e81ceae9b59d19dcaad7b0055309ed42beefd01a550d56",
640
+ "previous_output_index": 1,
641
+ "input_value": "0.00156716",
642
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
643
+ },
644
+ {
645
+ "input_index": 91,
646
+ "previous_txid": "ae0a2f9199562644f7dee24b07ca4ea9ff04d5085edeed5f48f63c54d53578e7",
647
+ "previous_output_index": 1,
648
+ "input_value": "0.00126844",
649
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
650
+ },
651
+ {
652
+ "input_index": 92,
653
+ "previous_txid": "e1964cdaee33584413c6f3b9cf0c8d9a0c9d85b1fe28b0f8e86816487a0ccddf",
654
+ "previous_output_index": 1,
655
+ "input_value": "0.00159894",
656
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
657
+ },
658
+ {
659
+ "input_index": 93,
660
+ "previous_txid": "b7371c28c8390fec06b3f51cc92fcddc9d15185b4ba5bd6db88df355733f27e7",
661
+ "previous_output_index": 1,
662
+ "input_value": "0.00137110",
663
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
664
+ },
665
+ {
666
+ "input_index": 94,
667
+ "previous_txid": "f99f34f763caabf127883c047f7179f7bbdd5932f452aafc41d460e518c62e9f",
668
+ "previous_output_index": 1,
669
+ "input_value": "0.00155952",
670
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
671
+ },
672
+ {
673
+ "input_index": 95,
674
+ "previous_txid": "ab81abcc287fb1be31836b732c8ac70ef6820093070f84f41cf655ab2e9eec49",
675
+ "previous_output_index": 1,
676
+ "input_value": "0.00128097",
677
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
678
+ },
679
+ {
680
+ "input_index": 96,
681
+ "previous_txid": "32190d622bd8a56e9225d44b1b776c18d4168d5c8a8ce6b09a2f7d136ff2dbb0",
682
+ "previous_output_index": 1,
683
+ "input_value": "0.00134045",
684
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
685
+ },
686
+ {
687
+ "input_index": 97,
688
+ "previous_txid": "9bbf05662504d864900b3362eea2afafc708be56d8af671f942e3ae1c4b2b2e5",
689
+ "previous_output_index": 1,
690
+ "input_value": "0.00170927",
691
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
692
+ },
693
+ {
694
+ "input_index": 98,
695
+ "previous_txid": "60a610c410784d22a3c56c661eba13fad895f46801f2f38e42dfd3bd81da0004",
696
+ "previous_output_index": 1,
697
+ "input_value": "0.00112409",
698
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
699
+ },
700
+ {
701
+ "input_index": 99,
702
+ "previous_txid": "52bb0a5243d19407bb02aa2ab7a72ab0f567e704c44a0171bb5ad971d41bc019",
703
+ "previous_output_index": 1,
704
+ "input_value": "0.00113161",
705
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
706
+ },
707
+ {
708
+ "input_index": 100,
709
+ "previous_txid": "36679675b78565fa9ef3ba4032af20256d397e321fdd4726be3fbfad31c02cd5",
710
+ "previous_output_index": 1,
711
+ "input_value": "0.00158328",
712
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
713
+ },
714
+ {
715
+ "input_index": 101,
716
+ "previous_txid": "bcad9bbaa9b093c6ea7c12d8899f8268d9e0a6a3f249a3293869b9c1cc022649",
717
+ "previous_output_index": 1,
718
+ "input_value": "0.00143737",
719
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
720
+ },
721
+ {
722
+ "input_index": 102,
723
+ "previous_txid": "131b87643cd0e5c94c7e81c8471a32bd31f22cb8325c24268c4a45d3db0a2d7a",
724
+ "previous_output_index": 1,
725
+ "input_value": "0.00146899",
726
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
727
+ },
728
+ {
729
+ "input_index": 103,
730
+ "previous_txid": "646f5bba041c2d105dab0869dcd8231c3defe947ea9f9b9b963bb215989a5513",
731
+ "previous_output_index": 1,
732
+ "input_value": "0.00171913",
733
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
734
+ },
735
+ {
736
+ "input_index": 104,
737
+ "previous_txid": "c2fedd99ae5f2ad5d055638b305d6fc8723c8ae7eea7d61fc42d49fe83ca0eb4",
738
+ "previous_output_index": 1,
739
+ "input_value": "0.00159929",
740
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
741
+ },
742
+ {
743
+ "input_index": 105,
744
+ "previous_txid": "3c006e6c4e52426a5ca55eb6e71a5b63167528664f56e69e1039013af2a6760e",
745
+ "previous_output_index": 1,
746
+ "input_value": "0.00153890",
747
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
748
+ },
749
+ {
750
+ "input_index": 106,
751
+ "previous_txid": "9a1631e00556b5e8f14fff3aec71972d776e538e67469bc16af29fda21ab68a1",
752
+ "previous_output_index": 1,
753
+ "input_value": "0.00192770",
754
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
755
+ },
756
+ {
757
+ "input_index": 107,
758
+ "previous_txid": "e86f3094d13a4f611197c8cb9fe4920666a3bf462f9dee9c04acb6e8ae157585",
759
+ "previous_output_index": 1,
760
+ "input_value": "0.00157461",
761
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
762
+ },
763
+ {
764
+ "input_index": 108,
765
+ "previous_txid": "9f0fcea7f9bffd8a15abb143262969185485104a1e70500121a2e8842f968451",
766
+ "previous_output_index": 1,
767
+ "input_value": "0.00161558",
768
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
769
+ },
770
+ {
771
+ "input_index": 109,
772
+ "previous_txid": "a76495ef62132a56e72569bfce6dd654ecddb909103051ce2d9dbfa61b38e8b7",
773
+ "previous_output_index": 1,
774
+ "input_value": "0.00113154",
775
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
776
+ },
777
+ {
778
+ "input_index": 110,
779
+ "previous_txid": "c307c4bd4a686877358c9944e8d06f78e3ffc14e9648d583947da352a341f679",
780
+ "previous_output_index": 1,
781
+ "input_value": "0.00146990",
782
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
783
+ },
784
+ {
785
+ "input_index": 111,
786
+ "previous_txid": "6bb514dd4b83a0d8e7e42a3821583703697434a8bc5fdf8e0d0e5141dbea5caf",
787
+ "previous_output_index": 1,
788
+ "input_value": "0.00137284",
789
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
790
+ },
791
+ {
792
+ "input_index": 112,
793
+ "previous_txid": "9aa10d68136100214c2963b282fb2156dff03ce2058175e00acba83bc70cbf4a",
794
+ "previous_output_index": 1,
795
+ "input_value": "0.00198600",
796
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
797
+ },
798
+ {
799
+ "input_index": 113,
800
+ "previous_txid": "f4bfdc0ce3cc27a2931440ba81cee8c815fd571a9ed63da4747490b8b705ac7e",
801
+ "previous_output_index": 1,
802
+ "input_value": "0.00153741",
803
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
804
+ },
805
+ {
806
+ "input_index": 114,
807
+ "previous_txid": "d8615d97e5b228b7eb217857d3a54d73d435966ac1fad832e4f18cf801c80838",
808
+ "previous_output_index": 1,
809
+ "input_value": "0.00133188",
810
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
811
+ },
812
+ {
813
+ "input_index": 115,
814
+ "previous_txid": "3201a8899571b323f947a13a92b0971fb7bbcb35ceb3fac143c73520b02ea7df",
815
+ "previous_output_index": 1,
816
+ "input_value": "0.00187694",
817
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
818
+ },
819
+ {
820
+ "input_index": 116,
821
+ "previous_txid": "5016fb59f976bbb8d2dbb01b3955e67fca5ebe7f5a4cec081604da20aae9cbf3",
822
+ "previous_output_index": 1,
823
+ "input_value": "0.00123727",
824
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
825
+ },
826
+ {
827
+ "input_index": 117,
828
+ "previous_txid": "871be632a5a787074e7c7d79498806f5ab0a0a8cae0a18fb70bab9fc581b17e0",
829
+ "previous_output_index": 1,
830
+ "input_value": "0.00196680",
831
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
832
+ },
833
+ {
834
+ "input_index": 118,
835
+ "previous_txid": "2ba4efd337e8720b972e0b404edfd7bc83ba8e4537a22b1009a72b981fb97569",
836
+ "previous_output_index": 1,
837
+ "input_value": "0.00119967",
838
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
839
+ },
840
+ {
841
+ "input_index": 119,
842
+ "previous_txid": "f37645ed6fcad630a74df622698a8e0297e73e779a5c9b76d7bc88e31edb7b51",
843
+ "previous_output_index": 1,
844
+ "input_value": "0.00196165",
845
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
846
+ },
847
+ {
848
+ "input_index": 120,
849
+ "previous_txid": "486966c372d251e94a79db43d1883754dc5cc2a35e953f0e7fd0679c0a6c71f6",
850
+ "previous_output_index": 1,
851
+ "input_value": "0.00152941",
852
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
853
+ },
854
+ {
855
+ "input_index": 121,
856
+ "previous_txid": "dcba29be4d5ffcf206de22c10b6ba233afa76485918e5c2a6b68e1296028efee",
857
+ "previous_output_index": 1,
858
+ "input_value": "0.00117778",
859
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
860
+ },
861
+ {
862
+ "input_index": 122,
863
+ "previous_txid": "94948db8439fe14c2261438c13f2167ee30be4a6f78ebf457bf00acc5def56bb",
864
+ "previous_output_index": 1,
865
+ "input_value": "0.00139325",
866
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
867
+ },
868
+ {
869
+ "input_index": 123,
870
+ "previous_txid": "b69efb91ad9bf6b1b0a53ee8ba5330412a5faaa6aaf5f649cd977f3b547c0334",
871
+ "previous_output_index": 1,
872
+ "input_value": "0.00155260",
873
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
874
+ },
875
+ {
876
+ "input_index": 124,
877
+ "previous_txid": "33959177ce26235ce97e7f1ee6c13aa752ac926f13d2f84e3ed3c0b2b58f2cc4",
878
+ "previous_output_index": 1,
879
+ "input_value": "0.00152485",
880
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
881
+ },
882
+ {
883
+ "input_index": 125,
884
+ "previous_txid": "c2ccccf013614c77e70f33c7abfb0340fe7403c60d423a3715083cc8ced439ba",
885
+ "previous_output_index": 1,
886
+ "input_value": "0.00187210",
887
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
888
+ },
889
+ {
890
+ "input_index": 126,
891
+ "previous_txid": "3c2bd8ff6a702f161aecd8d2283b806dfbf2955da34416a95e578524b7289870",
892
+ "previous_output_index": 1,
893
+ "input_value": "0.00170971",
894
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
895
+ },
896
+ {
897
+ "input_index": 127,
898
+ "previous_txid": "d047f737151e3e0b0c34a3c4836d9b80f0c6c2ee8088fd0879b68581e9457a79",
899
+ "previous_output_index": 1,
900
+ "input_value": "0.00191082",
901
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
902
+ },
903
+ {
904
+ "input_index": 128,
905
+ "previous_txid": "10a58882fc74cb53bec882a1356fd80c47b76c1c1468166c7bceaeff786bd010",
906
+ "previous_output_index": 1,
907
+ "input_value": "0.00158037",
908
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
909
+ },
910
+ {
911
+ "input_index": 129,
912
+ "previous_txid": "76393ff83232fee37fa2c1efad73c9846f76bbfda597410545abbf6e6e785ce2",
913
+ "previous_output_index": 1,
914
+ "input_value": "0.00194001",
915
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
916
+ },
917
+ {
918
+ "input_index": 130,
919
+ "previous_txid": "35df1ff0e48afc23083e9f4afd1d73639839b4ede3591ebaf1aae09042a9a9f6",
920
+ "previous_output_index": 1,
921
+ "input_value": "0.00160134",
922
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
923
+ },
924
+ {
925
+ "input_index": 131,
926
+ "previous_txid": "67cb65a680fe17e9b346f891064283d52b7b355cf4acfc56d4fde201d0c1909e",
927
+ "previous_output_index": 1,
928
+ "input_value": "0.00147370",
929
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
930
+ },
931
+ {
932
+ "input_index": 132,
933
+ "previous_txid": "b4b8e84d7290dde2dc2cdc462c007c7c0ad8ea2cfa1e0838fadbe9a059c5494e",
934
+ "previous_output_index": 1,
935
+ "input_value": "0.00147609",
936
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
937
+ },
938
+ {
939
+ "input_index": 133,
940
+ "previous_txid": "a4e392f1f7f0aca0339d57a683500d443df557863f9bfd7233635d40e471a792",
941
+ "previous_output_index": 1,
942
+ "input_value": "0.00131493",
943
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
944
+ },
945
+ {
946
+ "input_index": 134,
947
+ "previous_txid": "9fd3c79378a4e635e5e1f0b5870946036605ca44b60a6822c0b384760d540f10",
948
+ "previous_output_index": 1,
949
+ "input_value": "0.00111773",
950
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
951
+ },
952
+ {
953
+ "input_index": 135,
954
+ "previous_txid": "dd996d3699badbcb9f3565f1207d20af2202a58c0864ce36179811f7c79ff521",
955
+ "previous_output_index": 1,
956
+ "input_value": "0.00196188",
957
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
958
+ },
959
+ {
960
+ "input_index": 136,
961
+ "previous_txid": "b846aed0b5d26d19251dbcf5fc3b9867d8c1ca86f0b9b93f5f2a14a083a30b1f",
962
+ "previous_output_index": 1,
963
+ "input_value": "0.00140345",
964
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
965
+ },
966
+ {
967
+ "input_index": 137,
968
+ "previous_txid": "defd00483f2bdde81a048c8106ca1930a9e386c8df358d4c146bab93ff098aa7",
969
+ "previous_output_index": 1,
970
+ "input_value": "0.00113359",
971
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
972
+ },
973
+ {
974
+ "input_index": 138,
975
+ "previous_txid": "8e0f3974d99cabd69259b4f281aca3fd51d5c508ed685ccd1598fdbe25066b0c",
976
+ "previous_output_index": 1,
977
+ "input_value": "0.00133907",
978
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
979
+ },
980
+ {
981
+ "input_index": 139,
982
+ "previous_txid": "b09a8cc846a0d53ce5f7b203ed0b3ee2284765a206e821ac4271f0eab344a356",
983
+ "previous_output_index": 1,
984
+ "input_value": "0.00137209",
985
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
986
+ },
987
+ {
988
+ "input_index": 140,
989
+ "previous_txid": "24fadb060995dffaac86beb9e0a266d0ec01c1c090e97e5f7423c24490e190c4",
990
+ "previous_output_index": 1,
991
+ "input_value": "0.00182701",
992
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
993
+ },
994
+ {
995
+ "input_index": 141,
996
+ "previous_txid": "70ef3b66a58001c026cb6b9a581b4dc004d48b25f8475d390b1835cbe99ef123",
997
+ "previous_output_index": 1,
998
+ "input_value": "0.00153537",
999
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1000
+ },
1001
+ {
1002
+ "input_index": 142,
1003
+ "previous_txid": "f1de9a4666c3d91a0f54890db0b92513a9764030889f7a00d443ef87cc229171",
1004
+ "previous_output_index": 1,
1005
+ "input_value": "0.00184186",
1006
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1007
+ },
1008
+ {
1009
+ "input_index": 143,
1010
+ "previous_txid": "0f61a39f0a3f572fb4ef534b565e236be014b0c3aeb8af2e6156157fcc284c93",
1011
+ "previous_output_index": 1,
1012
+ "input_value": "0.00145613",
1013
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1014
+ },
1015
+ {
1016
+ "input_index": 144,
1017
+ "previous_txid": "f2442175e33b9a3ebea00a4422513fe042f662bf96e85a109624c27b4fb4dfa5",
1018
+ "previous_output_index": 1,
1019
+ "input_value": "0.00182556",
1020
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1021
+ },
1022
+ {
1023
+ "input_index": 145,
1024
+ "previous_txid": "b97bb81ef41b506ecffcdc978f1632a1868f5555fee354d15c42762954e29f02",
1025
+ "previous_output_index": 1,
1026
+ "input_value": "0.00150960",
1027
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1028
+ },
1029
+ {
1030
+ "input_index": 146,
1031
+ "previous_txid": "3b85bfc92ce72c8a2877943ecfda544a607038e71acb25f80d4783a94d86d7d3",
1032
+ "previous_output_index": 1,
1033
+ "input_value": "0.00134662",
1034
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1035
+ },
1036
+ {
1037
+ "input_index": 147,
1038
+ "previous_txid": "beb37408c1a1978fbbbd767ff2159331d6d360a7fe14b3634bc90e1032f49349",
1039
+ "previous_output_index": 1,
1040
+ "input_value": "0.00111822",
1041
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1042
+ },
1043
+ {
1044
+ "input_index": 148,
1045
+ "previous_txid": "af1f46164363581da859da1b0f368079468bdef646fa092a72aa2047194c37f9",
1046
+ "previous_output_index": 1,
1047
+ "input_value": "0.00128061",
1048
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1049
+ },
1050
+ {
1051
+ "input_index": 149,
1052
+ "previous_txid": "991a0f0a4c97e3519a135316cd25af54083280f93b18b90c11f03b7bf864152e",
1053
+ "previous_output_index": 1,
1054
+ "input_value": "0.00150940",
1055
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1056
+ },
1057
+ {
1058
+ "input_index": 150,
1059
+ "previous_txid": "451bbe91a1d88d510f6948dd322203ab6fe5ac0811e98ec3ccbc98fd811bf469",
1060
+ "previous_output_index": 1,
1061
+ "input_value": "0.00131723",
1062
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1063
+ },
1064
+ {
1065
+ "input_index": 151,
1066
+ "previous_txid": "5ac755015c9f9a0d845530e3a3e9d92cec21c58041e2d9784b4adbfd088ad66d",
1067
+ "previous_output_index": 1,
1068
+ "input_value": "0.00115082",
1069
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1070
+ },
1071
+ {
1072
+ "input_index": 152,
1073
+ "previous_txid": "f8c3eb383562571aa87cc746b4a52865ca74db4cb385fa72aa2a90260afee55f",
1074
+ "previous_output_index": 1,
1075
+ "input_value": "0.00197022",
1076
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1077
+ },
1078
+ {
1079
+ "input_index": 153,
1080
+ "previous_txid": "4f0f6c771dab4a8dbf06267165ea382dd17490c9beebadd09ef9ac673dd74c01",
1081
+ "previous_output_index": 1,
1082
+ "input_value": "0.00122207",
1083
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1084
+ },
1085
+ {
1086
+ "input_index": 154,
1087
+ "previous_txid": "c75f9a29fb245ff60b83a65beae15bebc86b639b6a6660ae8bea52623579a6e0",
1088
+ "previous_output_index": 1,
1089
+ "input_value": "0.00145375",
1090
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1091
+ },
1092
+ {
1093
+ "input_index": 155,
1094
+ "previous_txid": "51451d35f411f36a0b29f23a4be4bb1e870c79ba1095fc992323ed1be76895e3",
1095
+ "previous_output_index": 1,
1096
+ "input_value": "0.00158573",
1097
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1098
+ },
1099
+ {
1100
+ "input_index": 156,
1101
+ "previous_txid": "b1d9f7f1949cab7041d8d94d05a19cd2e74138b4a84c91cb79c01e2588f8affa",
1102
+ "previous_output_index": 1,
1103
+ "input_value": "0.00147532",
1104
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1105
+ },
1106
+ {
1107
+ "input_index": 157,
1108
+ "previous_txid": "5972382988829c5a1f298aeb7310b88744e1e690afcb71b26c464213d66d407f",
1109
+ "previous_output_index": 1,
1110
+ "input_value": "0.00117367",
1111
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1112
+ },
1113
+ {
1114
+ "input_index": 158,
1115
+ "previous_txid": "64a9f77152688902c9f7507be883b0ae59283ca8adcdc328a31bdd37d993d8b9",
1116
+ "previous_output_index": 1,
1117
+ "input_value": "0.00192992",
1118
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1119
+ },
1120
+ {
1121
+ "input_index": 159,
1122
+ "previous_txid": "dc23cb29c9efe19ff74ff72214f2648a0af73956b5df9ae0634913791c7fc2ef",
1123
+ "previous_output_index": 1,
1124
+ "input_value": "0.00124609",
1125
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1126
+ },
1127
+ {
1128
+ "input_index": 160,
1129
+ "previous_txid": "f0ebd6fec9956f87f5b78d674279363b8070b95df62080dc2f56fc6ca8d900a0",
1130
+ "previous_output_index": 1,
1131
+ "input_value": "0.00198013",
1132
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1133
+ },
1134
+ {
1135
+ "input_index": 161,
1136
+ "previous_txid": "bf1d9d7b738be45ce14880aa9de39b1609d615c86bbd59125b9b0b99946cc2f4",
1137
+ "previous_output_index": 1,
1138
+ "input_value": "0.00151380",
1139
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1140
+ },
1141
+ {
1142
+ "input_index": 162,
1143
+ "previous_txid": "d2c554b7e5ad72e26c06424be3ee3bb37a36d16d6eedae68071107c6744108c2",
1144
+ "previous_output_index": 1,
1145
+ "input_value": "0.00117981",
1146
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1147
+ },
1148
+ {
1149
+ "input_index": 163,
1150
+ "previous_txid": "0a609a3c12937547d8dd96f1e6e1b71697efa2e2b66656345b283dbd35f4656d",
1151
+ "previous_output_index": 1,
1152
+ "input_value": "0.00174290",
1153
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1154
+ },
1155
+ {
1156
+ "input_index": 164,
1157
+ "previous_txid": "1a95b300278f037bc64e1d594d88ba57a94dd7b21528604466ac1fe30cc4c5c1",
1158
+ "previous_output_index": 1,
1159
+ "input_value": "0.00198153",
1160
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1161
+ },
1162
+ {
1163
+ "input_index": 165,
1164
+ "previous_txid": "d08b44aa254883d5ba61f4d6ab3bbd3e8a534fc07df569f0dce2ca084c2fdfa9",
1165
+ "previous_output_index": 1,
1166
+ "input_value": "0.00147117",
1167
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1168
+ },
1169
+ {
1170
+ "input_index": 166,
1171
+ "previous_txid": "0a322e69576a338286ab252c9b092f641c7cb682fb5185aa7e4bf25665e4f067",
1172
+ "previous_output_index": 1,
1173
+ "input_value": "0.00185212",
1174
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1175
+ },
1176
+ {
1177
+ "input_index": 167,
1178
+ "previous_txid": "24bf7adf1363ce9b320f71cf265b15efdec6048290d75248c8e5d6391de81281",
1179
+ "previous_output_index": 1,
1180
+ "input_value": "0.00180252",
1181
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1182
+ },
1183
+ {
1184
+ "input_index": 168,
1185
+ "previous_txid": "c95f898f2b70641c76f13bf78c9cbcdf2b623ffe5a0caa753bef95d2c76874be",
1186
+ "previous_output_index": 1,
1187
+ "input_value": "0.00130968",
1188
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1189
+ },
1190
+ {
1191
+ "input_index": 169,
1192
+ "previous_txid": "1b6a7bd6d4508b6f61ccb3b76903ad2a55f82cf8fedf7385504aff4f5d2a6473",
1193
+ "previous_output_index": 1,
1194
+ "input_value": "0.00148842",
1195
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1196
+ },
1197
+ {
1198
+ "input_index": 170,
1199
+ "previous_txid": "6de1257b1dfeef6d3e498f045bc2e4a774c0c70d3767d7b231a725916f09bfa9",
1200
+ "previous_output_index": 1,
1201
+ "input_value": "0.00186004",
1202
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1203
+ },
1204
+ {
1205
+ "input_index": 171,
1206
+ "previous_txid": "535cde5ad8baa8b08ebd2aa726979a21c1287d9cfcedae6adfbaf21577e00c17",
1207
+ "previous_output_index": 1,
1208
+ "input_value": "0.00123016",
1209
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1210
+ },
1211
+ {
1212
+ "input_index": 172,
1213
+ "previous_txid": "70fd30880398ba7491fd686789ab8fd89095c397d3a75cd571569366014a4f9c",
1214
+ "previous_output_index": 1,
1215
+ "input_value": "0.00169890",
1216
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1217
+ },
1218
+ {
1219
+ "input_index": 173,
1220
+ "previous_txid": "7e45248732f96508e6a8802193989e0e463baba28d96d7b4fdcb5d5f1497400f",
1221
+ "previous_output_index": 1,
1222
+ "input_value": "0.00189562",
1223
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1224
+ },
1225
+ {
1226
+ "input_index": 174,
1227
+ "previous_txid": "5cad84a62b0d9d18dec103145a57f2fada94690b9c2f376a092d843a4c8c7cb0",
1228
+ "previous_output_index": 1,
1229
+ "input_value": "0.00189270",
1230
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1231
+ },
1232
+ {
1233
+ "input_index": 175,
1234
+ "previous_txid": "f381edea39abbe7e1a55a8e524aba3169de3cd5d653c5bb880f532fc54defb00",
1235
+ "previous_output_index": 1,
1236
+ "input_value": "0.00159243",
1237
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1238
+ },
1239
+ {
1240
+ "input_index": 176,
1241
+ "previous_txid": "91264083e89907420897da46b5b6f2122eedc776aebb852c8a97e16e95d54b82",
1242
+ "previous_output_index": 1,
1243
+ "input_value": "0.00184348",
1244
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1245
+ },
1246
+ {
1247
+ "input_index": 177,
1248
+ "previous_txid": "00b2a2369e17ce8d9f60b8616ecfa74306cd17a72bf5bdfebf689816f235cc91",
1249
+ "previous_output_index": 1,
1250
+ "input_value": "0.00175074",
1251
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1252
+ },
1253
+ {
1254
+ "input_index": 178,
1255
+ "previous_txid": "0e50991c9c8481577942e9d0495c79439f1c74cd25d4c33891c92ebbeba31941",
1256
+ "previous_output_index": 1,
1257
+ "input_value": "0.00130483",
1258
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1259
+ },
1260
+ {
1261
+ "input_index": 179,
1262
+ "previous_txid": "024a09ce4949fe3f82c864540b590cd6f4ff14911cfd9a855c80480e101592f9",
1263
+ "previous_output_index": 1,
1264
+ "input_value": "0.00165360",
1265
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1266
+ },
1267
+ {
1268
+ "input_index": 180,
1269
+ "previous_txid": "df3e876f0989c749d5d8b63b7404333f9430a998d6d6b87ff6ad6c9a33aae561",
1270
+ "previous_output_index": 1,
1271
+ "input_value": "0.00150918",
1272
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1273
+ },
1274
+ {
1275
+ "input_index": 181,
1276
+ "previous_txid": "1f70cb722829b04627d05019ab0f98912a7cf4d2852b3c8b17e496b0b58f866c",
1277
+ "previous_output_index": 1,
1278
+ "input_value": "0.00175778",
1279
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1280
+ },
1281
+ {
1282
+ "input_index": 182,
1283
+ "previous_txid": "4ab39c457918af678730d6f52e8fbbe44c5e3ec132aae4d492513d7e57d9c310",
1284
+ "previous_output_index": 1,
1285
+ "input_value": "0.00188916",
1286
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1287
+ },
1288
+ {
1289
+ "input_index": 183,
1290
+ "previous_txid": "ccacfb8f584cb482a2219499ae7e6c20ca69399bd341137d29c1ac4ac78de4e5",
1291
+ "previous_output_index": 1,
1292
+ "input_value": "0.00171883",
1293
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1294
+ },
1295
+ {
1296
+ "input_index": 184,
1297
+ "previous_txid": "39b5746c4093ab771c3d24a2db6845f99f0087ce4d592c5b9b03ac9f222d3d4f",
1298
+ "previous_output_index": 1,
1299
+ "input_value": "0.00184314",
1300
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1301
+ },
1302
+ {
1303
+ "input_index": 185,
1304
+ "previous_txid": "9c03b02e180b1ba3ef9cd20c3cde995b33418441391ea17daceedafc6fc48d0b",
1305
+ "previous_output_index": 1,
1306
+ "input_value": "0.00140617",
1307
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1308
+ },
1309
+ {
1310
+ "input_index": 186,
1311
+ "previous_txid": "47aa371bfa4aba0f95511e46ca9c32d2f36cde0f9b5e2eb56c4e1ebd8de852f2",
1312
+ "previous_output_index": 1,
1313
+ "input_value": "0.00177433",
1314
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1315
+ },
1316
+ {
1317
+ "input_index": 187,
1318
+ "previous_txid": "c8f91442088684cfaa5ccb292f3c2a9b407094e6cdc6e1ad246c60f6eac05a0d",
1319
+ "previous_output_index": 1,
1320
+ "input_value": "0.00132158",
1321
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1322
+ },
1323
+ {
1324
+ "input_index": 188,
1325
+ "previous_txid": "80125a052ac1edf51d772b2ddbfac3c03e2ea9254ffb2a51811573fbeb6df0f0",
1326
+ "previous_output_index": 1,
1327
+ "input_value": "0.00136377",
1328
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1329
+ },
1330
+ {
1331
+ "input_index": 189,
1332
+ "previous_txid": "a6b40b9a8f83aae25d78c2bfe16ba00c8024ea149b9c543b0bf2c9313d1840f8",
1333
+ "previous_output_index": 1,
1334
+ "input_value": "0.00197390",
1335
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1336
+ },
1337
+ {
1338
+ "input_index": 190,
1339
+ "previous_txid": "8f215987590b1148d05ae34367ab1c28d88dab8f406dccff530e86c77d011589",
1340
+ "previous_output_index": 1,
1341
+ "input_value": "0.00131890",
1342
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1343
+ },
1344
+ {
1345
+ "input_index": 191,
1346
+ "previous_txid": "d06dab79a700e3ca689bc5788e5825204d06e0029b44261390efb9b332f9682c",
1347
+ "previous_output_index": 1,
1348
+ "input_value": "0.00120200",
1349
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1350
+ },
1351
+ {
1352
+ "input_index": 192,
1353
+ "previous_txid": "5c85e371183c8481c983250a41a533ae5bd48ad90a203747e1730387b19e837d",
1354
+ "previous_output_index": 1,
1355
+ "input_value": "0.00193530",
1356
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1357
+ },
1358
+ {
1359
+ "input_index": 193,
1360
+ "previous_txid": "2ebaf5f8912aac7d1b8985eeeaad6457d1abf410f9e692e6ed6fec46ab8178a2",
1361
+ "previous_output_index": 1,
1362
+ "input_value": "0.00148168",
1363
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1364
+ },
1365
+ {
1366
+ "input_index": 194,
1367
+ "previous_txid": "fbecc28ba5d5f9d4c7685c00616c6e0f20eea96ea4bc7c67ad3c8caac7624886",
1368
+ "previous_output_index": 1,
1369
+ "input_value": "0.00148420",
1370
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1371
+ },
1372
+ {
1373
+ "input_index": 195,
1374
+ "previous_txid": "afbea8be034005495bdae8fa46ba749803df24de5a9de4cbd476f22a754b2164",
1375
+ "previous_output_index": 1,
1376
+ "input_value": "0.00145559",
1377
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1378
+ },
1379
+ {
1380
+ "input_index": 196,
1381
+ "previous_txid": "df95a63b8e505a5f7c7e302ebfcf89d833050252809987ca607037ec6728303a",
1382
+ "previous_output_index": 1,
1383
+ "input_value": "0.00179247",
1384
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1385
+ },
1386
+ {
1387
+ "input_index": 197,
1388
+ "previous_txid": "fbf6bd402494b6effbc57575c9692232dba001bd0048efc77e46915e6774b6da",
1389
+ "previous_output_index": 1,
1390
+ "input_value": "0.00171085",
1391
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1392
+ },
1393
+ {
1394
+ "input_index": 198,
1395
+ "previous_txid": "f04c5d9e6aa25b322e2decc247269bfe222f0af5ab1c13df73650b4015194a15",
1396
+ "previous_output_index": 1,
1397
+ "input_value": "0.00136337",
1398
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1399
+ },
1400
+ {
1401
+ "input_index": 199,
1402
+ "previous_txid": "500c5b3b96d771380db1c0f1fed5c76af4f0f85bc323a262273494c8544d8451",
1403
+ "previous_output_index": 1,
1404
+ "input_value": "0.00199778",
1405
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1406
+ },
1407
+ {
1408
+ "input_index": 200,
1409
+ "previous_txid": "5b5742319f9490c3fd5acbba6df0a180b0a09844e826ab7cac2cb6f227e84919",
1410
+ "previous_output_index": 1,
1411
+ "input_value": "0.00175991",
1412
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1413
+ },
1414
+ {
1415
+ "input_index": 201,
1416
+ "previous_txid": "333941cb8a1da4538e61e9796d2d7e53f5089c78a78c06e7bf5429f9c9afae8b",
1417
+ "previous_output_index": 1,
1418
+ "input_value": "0.00147375",
1419
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1420
+ },
1421
+ {
1422
+ "input_index": 202,
1423
+ "previous_txid": "225a508eb9a4a530d612ca668c3c32bf07bb82c79038f282a765a75509a2d97b",
1424
+ "previous_output_index": 1,
1425
+ "input_value": "0.00171881",
1426
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1427
+ },
1428
+ {
1429
+ "input_index": 203,
1430
+ "previous_txid": "5a9fa5de99092556d536e5dacb6b0638343c050750c3c2eed9d8acd619a58dd8",
1431
+ "previous_output_index": 1,
1432
+ "input_value": "0.00137282",
1433
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1434
+ },
1435
+ {
1436
+ "input_index": 204,
1437
+ "previous_txid": "c8e8b7771074e2e812c2f4e7015b67d420a934384489f6818bf0a807a2d324c2",
1438
+ "previous_output_index": 1,
1439
+ "input_value": "0.00128187",
1440
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1441
+ },
1442
+ {
1443
+ "input_index": 205,
1444
+ "previous_txid": "6b3012ce3e46ed2a05d3a34614f7a9732a18cdfcece33627cf363fb4f25c4008",
1445
+ "previous_output_index": 1,
1446
+ "input_value": "0.00159736",
1447
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1448
+ },
1449
+ {
1450
+ "input_index": 206,
1451
+ "previous_txid": "13e473668fb6921eff3f963d840c126727dab01fce1ec9c18d6153445c575738",
1452
+ "previous_output_index": 1,
1453
+ "input_value": "0.00145686",
1454
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1455
+ },
1456
+ {
1457
+ "input_index": 207,
1458
+ "previous_txid": "0fa2968fcba3b0d3edd741fd5cd46db89e560a69b9b1ec4d73aad1ca6f0692e1",
1459
+ "previous_output_index": 1,
1460
+ "input_value": "0.00195744",
1461
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1462
+ },
1463
+ {
1464
+ "input_index": 208,
1465
+ "previous_txid": "c231979942f7a21aa928f479791fa144ff6b3428cb2cd12e913fdad68f478c78",
1466
+ "previous_output_index": 1,
1467
+ "input_value": "0.00184376",
1468
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1469
+ },
1470
+ {
1471
+ "input_index": 209,
1472
+ "previous_txid": "c31dda6910c0e90cf1a1f56a3dd737e1f8d761e737cf9535e739c04bae61fe79",
1473
+ "previous_output_index": 1,
1474
+ "input_value": "0.00163814",
1475
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1476
+ },
1477
+ {
1478
+ "input_index": 210,
1479
+ "previous_txid": "4b4fa4b875d26b50355147ba0967ba10d220c79bc2d46efafd88e6f4279d5aa2",
1480
+ "previous_output_index": 1,
1481
+ "input_value": "0.00134985",
1482
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1483
+ },
1484
+ {
1485
+ "input_index": 211,
1486
+ "previous_txid": "a8e0f7ae50e64280fa6041331260b598f9c8ae8e0f0a367f9a304d31fa033bf2",
1487
+ "previous_output_index": 1,
1488
+ "input_value": "0.00164782",
1489
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1490
+ },
1491
+ {
1492
+ "input_index": 212,
1493
+ "previous_txid": "4d810e84421976fd75b47f49efdaba633608fc3cdefc05b5be4e958c9adc01aa",
1494
+ "previous_output_index": 1,
1495
+ "input_value": "0.00123663",
1496
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1497
+ },
1498
+ {
1499
+ "input_index": 213,
1500
+ "previous_txid": "7b217542d480dcba617f77fb17e1bf24ee80e99e05af151ab378d56535f24687",
1501
+ "previous_output_index": 1,
1502
+ "input_value": "0.00178595",
1503
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1504
+ },
1505
+ {
1506
+ "input_index": 214,
1507
+ "previous_txid": "e1867bc625a65830b091f10b0ceb3c90edd7425c65a9d3078ac936d415f8fd60",
1508
+ "previous_output_index": 1,
1509
+ "input_value": "0.00113186",
1510
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1511
+ },
1512
+ {
1513
+ "input_index": 215,
1514
+ "previous_txid": "73cc5ea181ecb8f51487a53d233a72ee38b8192d076750fadc988cfad584ecfe",
1515
+ "previous_output_index": 1,
1516
+ "input_value": "0.00127693",
1517
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1518
+ },
1519
+ {
1520
+ "input_index": 216,
1521
+ "previous_txid": "a6a3e3f8d5578141d57c3344908612b28b88904f4b0f4cc99ef73e9431124283",
1522
+ "previous_output_index": 1,
1523
+ "input_value": "0.00178825",
1524
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1525
+ },
1526
+ {
1527
+ "input_index": 217,
1528
+ "previous_txid": "bfbb9b4ef5ef959cf10a87d4b475a66a1214079e905bdc04d9c3bff014df0b57",
1529
+ "previous_output_index": 1,
1530
+ "input_value": "0.00142470",
1531
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1532
+ },
1533
+ {
1534
+ "input_index": 218,
1535
+ "previous_txid": "74abfc3a18f3dbc31147f1e0391dd76ba1005309deb02428b11862537bf72766",
1536
+ "previous_output_index": 1,
1537
+ "input_value": "0.00179402",
1538
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1539
+ },
1540
+ {
1541
+ "input_index": 219,
1542
+ "previous_txid": "430cf576debce32455dc6570bb8bb0e6fecb7ba9260d3ff9e28a42b40025d573",
1543
+ "previous_output_index": 1,
1544
+ "input_value": "0.00187354",
1545
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1546
+ },
1547
+ {
1548
+ "input_index": 220,
1549
+ "previous_txid": "7efe72c77c3e3fdfd843ee0f629dfdf1b2fe299411d81441da8e4403d77e0a14",
1550
+ "previous_output_index": 1,
1551
+ "input_value": "0.00173590",
1552
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1553
+ },
1554
+ {
1555
+ "input_index": 221,
1556
+ "previous_txid": "968d8d79c9b83fc8b72c60a17e3820b91832641db04e984f76e65f9d0ef32a6d",
1557
+ "previous_output_index": 1,
1558
+ "input_value": "0.00161440",
1559
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1560
+ },
1561
+ {
1562
+ "input_index": 222,
1563
+ "previous_txid": "4f1c45964684a31fc38fc1a1f3ea78528a49bb3a39d463d84d5a6d3307f925d1",
1564
+ "previous_output_index": 1,
1565
+ "input_value": "0.00155286",
1566
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1567
+ },
1568
+ {
1569
+ "input_index": 223,
1570
+ "previous_txid": "ca162c3878d037a37277a03da40d393a2869eca46fbfe2d67c7263d240e36595",
1571
+ "previous_output_index": 1,
1572
+ "input_value": "0.00151670",
1573
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1574
+ },
1575
+ {
1576
+ "input_index": 224,
1577
+ "previous_txid": "675ae177b2b268e1d96a659848127b0713e836f2e95877146e146d32576c86a3",
1578
+ "previous_output_index": 1,
1579
+ "input_value": "0.00169620",
1580
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1581
+ },
1582
+ {
1583
+ "input_index": 225,
1584
+ "previous_txid": "237a230ae8c43313417b5e76cefae25003f25040beaca570deeb62654915c265",
1585
+ "previous_output_index": 1,
1586
+ "input_value": "0.00147452",
1587
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1588
+ },
1589
+ {
1590
+ "input_index": 226,
1591
+ "previous_txid": "cb50d5ff36856e42040b9c8dc604207f4ff0b225f2135f671f53219972651ec5",
1592
+ "previous_output_index": 1,
1593
+ "input_value": "0.00160178",
1594
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1595
+ },
1596
+ {
1597
+ "input_index": 227,
1598
+ "previous_txid": "e17282f1368aeef76a7438993dd5642f5b4c47f534e15a924eee5d8588554aa5",
1599
+ "previous_output_index": 1,
1600
+ "input_value": "0.00133374",
1601
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1602
+ },
1603
+ {
1604
+ "input_index": 228,
1605
+ "previous_txid": "bce221639c2d747ae572c28f1cd5bfec94311c5b202afe169d6083725ee11c44",
1606
+ "previous_output_index": 1,
1607
+ "input_value": "0.00137478",
1608
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1609
+ },
1610
+ {
1611
+ "input_index": 229,
1612
+ "previous_txid": "c467cf215ebdf5bd824ea30fd14536e9e7fea72344bfde41d34fecf248bec2f7",
1613
+ "previous_output_index": 1,
1614
+ "input_value": "0.00193870",
1615
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1616
+ },
1617
+ {
1618
+ "input_index": 230,
1619
+ "previous_txid": "fa7eb1209010747b455f1b181f0fdbf0dc06a77336db8ecee683a127881ff36d",
1620
+ "previous_output_index": 1,
1621
+ "input_value": "0.00185800",
1622
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1623
+ },
1624
+ {
1625
+ "input_index": 231,
1626
+ "previous_txid": "e9ec6d6cf6fd6850bfdfbde65bc5c9d80a1fcd65e5e43edfc8af17246ac2155a",
1627
+ "previous_output_index": 1,
1628
+ "input_value": "0.00148010",
1629
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1630
+ },
1631
+ {
1632
+ "input_index": 232,
1633
+ "previous_txid": "609c4e633f0f94d5f0ff599ff505b39839982b9fe9ce7a62e9d9f847a8e33fcf",
1634
+ "previous_output_index": 1,
1635
+ "input_value": "0.00116484",
1636
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1637
+ },
1638
+ {
1639
+ "input_index": 233,
1640
+ "previous_txid": "980ec575f63db469e8f4e5f931e6ed535e0684dccb823fecac03ac8f1adb4dc9",
1641
+ "previous_output_index": 1,
1642
+ "input_value": "0.00187255",
1643
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1644
+ },
1645
+ {
1646
+ "input_index": 234,
1647
+ "previous_txid": "bb152ef8a8cda683f30dfe3c02cdd6c497bc822fcbac4558234d0d2e66876b01",
1648
+ "previous_output_index": 1,
1649
+ "input_value": "0.00184838",
1650
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1651
+ },
1652
+ {
1653
+ "input_index": 235,
1654
+ "previous_txid": "89971e8218a1d8787f1751f128252e948df8f19e0f56a11ba8148ce122f4edc9",
1655
+ "previous_output_index": 1,
1656
+ "input_value": "0.00151168",
1657
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1658
+ },
1659
+ {
1660
+ "input_index": 236,
1661
+ "previous_txid": "37284d65f8a62a16a804bed6c72cadb1b68b09c7102b87f9c6bef72a0b1f9ac9",
1662
+ "previous_output_index": 1,
1663
+ "input_value": "0.00155097",
1664
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1665
+ },
1666
+ {
1667
+ "input_index": 237,
1668
+ "previous_txid": "f6e8504df8870d55002fa54583c992484ff0ce8a2b009912fe2b5a68318435f5",
1669
+ "previous_output_index": 1,
1670
+ "input_value": "0.00140480",
1671
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1672
+ },
1673
+ {
1674
+ "input_index": 238,
1675
+ "previous_txid": "b77d44120ee86fe44b1a87d92b97f5e7f455797a23f20cd2fd1107b8d9722dbd",
1676
+ "previous_output_index": 1,
1677
+ "input_value": "0.00153520",
1678
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1679
+ },
1680
+ {
1681
+ "input_index": 239,
1682
+ "previous_txid": "e4bc0571616676c90f3a833a0b414e172b5722a7097a052b761c12b4c1e8ef1d",
1683
+ "previous_output_index": 1,
1684
+ "input_value": "0.00137481",
1685
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1686
+ },
1687
+ {
1688
+ "input_index": 240,
1689
+ "previous_txid": "4e8b208d7b5f4bf57749f14f0ae3a0ddca1734df8625b690046c216ae07df374",
1690
+ "previous_output_index": 1,
1691
+ "input_value": "0.00171796",
1692
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1693
+ },
1694
+ {
1695
+ "input_index": 241,
1696
+ "previous_txid": "b67c42885836f926c75bb231db33d77b0dffe91913734b4d365e8635f23d5e5b",
1697
+ "previous_output_index": 1,
1698
+ "input_value": "0.00155509",
1699
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1700
+ },
1701
+ {
1702
+ "input_index": 242,
1703
+ "previous_txid": "a1294122e29915fe5a7da32389d2278581114f116b21a776906e13d1dbdf304c",
1704
+ "previous_output_index": 1,
1705
+ "input_value": "0.00147349",
1706
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1707
+ },
1708
+ {
1709
+ "input_index": 243,
1710
+ "previous_txid": "1bed9b211a42971b403fbfb83b6b876215bb323c028bcdd79a26f8789bde0133",
1711
+ "previous_output_index": 1,
1712
+ "input_value": "0.00110610",
1713
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1714
+ },
1715
+ {
1716
+ "input_index": 244,
1717
+ "previous_txid": "46595625db06eba7d0a6319caccefff9f67311af317f9268d3d184f21c00d237",
1718
+ "previous_output_index": 1,
1719
+ "input_value": "0.00190398",
1720
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1721
+ },
1722
+ {
1723
+ "input_index": 245,
1724
+ "previous_txid": "5a89194746c18573c13b3cba7b558c3642a30fdbf29566287fbc27f8500db23a",
1725
+ "previous_output_index": 1,
1726
+ "input_value": "0.00180049",
1727
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1728
+ },
1729
+ {
1730
+ "input_index": 246,
1731
+ "previous_txid": "233852c41eeb3cba730e5203a01652d823becbd49297736b19a20082874456e1",
1732
+ "previous_output_index": 1,
1733
+ "input_value": "0.00123082",
1734
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1735
+ },
1736
+ {
1737
+ "input_index": 247,
1738
+ "previous_txid": "8ce598fd75f902557ae7a638e03b889fd639006b62f7deeae9efbedbac2d05d7",
1739
+ "previous_output_index": 1,
1740
+ "input_value": "0.00130673",
1741
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1742
+ },
1743
+ {
1744
+ "input_index": 248,
1745
+ "previous_txid": "9c34c88c65ee5bd33322c7c36de0fe122772478ad0687e5ab2b50b0ef5052ade",
1746
+ "previous_output_index": 1,
1747
+ "input_value": "0.00166581",
1748
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1749
+ },
1750
+ {
1751
+ "input_index": 249,
1752
+ "previous_txid": "f624a44289a7f9303f7b0c15771b52ee372121b4153251090628e5e40dd52248",
1753
+ "previous_output_index": 1,
1754
+ "input_value": "0.00196951",
1755
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1756
+ },
1757
+ {
1758
+ "input_index": 250,
1759
+ "previous_txid": "2132fbdf1f0697e3b6544055ed05089446449c460481d338a9bf92023af31aec",
1760
+ "previous_output_index": 1,
1761
+ "input_value": "0.00177220",
1762
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1763
+ },
1764
+ {
1765
+ "input_index": 251,
1766
+ "previous_txid": "c704d98b69cf586ba49d2d049ed536b2f61187693313bbabd26671138183fbff",
1767
+ "previous_output_index": 1,
1768
+ "input_value": "0.00146438",
1769
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1770
+ },
1771
+ {
1772
+ "input_index": 252,
1773
+ "previous_txid": "02ae06f1ef26ab9afb1c4fe67fd487407db73ade0cc27dc9c84b0b60e0b6012a",
1774
+ "previous_output_index": 1,
1775
+ "input_value": "0.00198370",
1776
+ "spending_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1777
+ }
1778
+ ],
1779
+ "outputs": [
1780
+ {
1781
+ "output_index": 0,
1782
+ "output_category": "user-specified",
1783
+ "output_value": "0.37360000",
1784
+ "receiving_address": "QcyH5G5jr36pFvZy99eRi9iZsmSzEztLHn"
1785
+ },
1786
+ {
1787
+ "output_index": 1,
1788
+ "output_category": "change",
1789
+ "output_value": "0.00066491",
1790
+ "receiving_address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o"
1791
+ }
1792
+ ],
1793
+ "input_address_data": [
1794
+ {
1795
+ "required_signatures": 4,
1796
+ "public_keys": [
1797
+ "02d9f0808ad9fab3025fdeecf89517cc80413d51bd44f5f95eb3dceea72d85a160",
1798
+ "02510e29d51e9a4268e6a5253c1fbd8144857945b82acb0accfc235cc7ca36da11",
1799
+ "0201a819bf549c253c4397bdd1535374de39e9bc278f637afdc27642d52cf79139",
1800
+ "039e3aa9ea182ccdaff2d8d150010b27cc4765c1d55ce674e52631af7376354d62",
1801
+ "03ee980e6334142342fcd9e6facfecfa139981e2276584c91d6a9739d533ac99fc"
1802
+ ],
1803
+ "address": "Qd2ZVrq8VSEsu66ETEiDXeHx1qjygjEZ6o",
1804
+ "address_type": "P2WSH-over-P2SH"
1805
+ }
1806
+ ],
1807
+ "estimated_tx_size": 48906
1808
+ }
1809
+ }